-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.dart
48 lines (35 loc) · 922 Bytes
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
bool isSymmetric(Node root){
return isMirror(root, root);
}
bool isMirror(Node? t1, Node? t2){
if(t1 == null && t2 == null) return true;
if(t1 == null || t2 == null) return false;
return (t1.data == t2.data) && isMirror(t1.left, t2.right) && isMirror(t1.right, t2.left);
}
// A binary tree node has data, pointer to left child
// and a pointer to right child
class Node {
late int data;
Node? left, right;
Node(int data) {
this.data = data;
left = right = null;
}
}
// Utility function to create a new tree node
Node? newNode(int data) {
Node temp = Node(data);
return temp;
}
// Driver code
void main() {
Node? root = newNode(1);
root!.left = newNode(2);
root.right = newNode(3);
root.right!.left = newNode(4);
root.right!.right = newNode(3);
root.left!.left = newNode(3);
root.left!.right = newNode(4);
// Function call
print("Result: ${isSymmetric(root)}");
}