-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtwo_sum_IV_input_is_a_bst.dart
150 lines (131 loc) · 5.01 KB
/
two_sum_IV_input_is_a_bst.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
-* Two Sum IV - Input is a BST *-
Given the root of a Binary Search Tree and a target number k, return true if there exist two elements in the BST such that their sum is equal to the given target.
Example 1:
Input: root = [5,3,6,2,4,null,7], k = 9
Output: true
Example 2:
Input: root = [5,3,6,2,4,null,7], k = 28
Output: false
Constraints:
The number of nodes in the tree is in the range [1, 104].
-104 <= Node.val <= 104
root is guaranteed to be a valid binary search tree.
*/
// Definition for a binary tree node.
import 'dart:collection';
class TreeNode {
int val;
TreeNode? left;
TreeNode? right;
TreeNode([this.val = 0, this.left, this.right]);
}
class A {
// Runtime: 544 ms, faster than 100.00% of Dart online submissions for Two Sum IV - Input is a BST.
// Memory Usage: 150 MB, less than 100.00% of Dart online submissions for Two Sum IV - Input is a BST.
List<int> array = [];
// inOrder to reading the tree top to bottom
void inorder(TreeNode? root) {
// if our root is null means there is nothing to begin with
if (root == null) return;
// reading the tree from left side
inorder(root.left);
// adding the value inside the array
array.add(root.val);
// than reading the tree from left side
inorder(root.right);
}
bool findTarget(TreeNode? root, int k) {
// if the root is null means we have found nothing
if (root == null) return false;
// than simply we will return the root of the tree
inorder(root);
// first pointer - beginning of the array (Left Side)
int low = 0;
// second pointer - end of the array (Right Side)
int high = array.length - 1;
// assuming all the value on the left side means low side of the array is smaller than the right side
while (low < high) {
// if the sum of the first value and the last value from both side is same as target than turn true
if (array[low] + array[high] == k)
return true;
// if sum is less than the target value means the target value is on right side of the array
else if (array[low] + array[high] < k)
// than we will move forward toward the right side
low++;
else
// if sum is greater than the target value means the target value is on right side of the array
// than we will move backward toward the right side
high--;
}
// if everything sucks than we will return false
return false;
}
}
class B {
// Runtime: 689 ms, faster than 100.00% of Dart online submissions for Two Sum IV - Input is a BST.
// Memory Usage: 159.9 MB, less than 100.00% of Dart online submissions for Two Sum IV - Input is a BST.
bool findTarget(TreeNode? root, int k) {
// if the root is null means we have nothing
if (root == null) return false;
// to sort our tree
List<int> array = [];
// looking for target - extra variable
int target = k;
//level order traversal and storing values in list
Queue<TreeNode?> queue = Queue();
// adding our root to the queue
queue.add(root);
// assuming nothing is empty
while (queue.isNotEmpty) {
// if so we will remove the first value
TreeNode tempNode = queue.removeFirst()!;
// than we will add the value into the array for sorting - means arranging the values
array.add(tempNode.val);
// if the left side have values and it's not null
if (tempNode.left != null) {
// we will add all the value into the queue
queue.add(tempNode.left);
}
// if the right side is not null - means not empty than we will also add them
if (tempNode.right != null) {
queue.add(tempNode.right);
}
}
// if our array is only have one value or 0 means less than blah blah we have nothing
if (array.length <= 1) return false;
//simple two sum logic
// lopping through each and every element
for (int i = 0; i < array.length; i++) {
// the temp value if the target value - the each and every element
int temp = target - array.elementAt(i);
// if our array contain that value
if (array.contains(temp)) {
// and it matches with array value at any point
int pos = array.indexOf(temp);
// if the element and the position matches Congratulation -*You are Married*-
if (i == pos) continue;
return true;
}
}
// otherwise she Rejected your proposal -* Better Luck Next Time Bro*-
return false;
}
}
class C {
// Runtime: 571 ms, faster than 100.00% of Dart online submissions for Two Sum IV - Input is a BST.
// Memory Usage: 153.4 MB, less than 100.00% of Dart online submissions for Two Sum IV - Input is a BST.
HashSet hashSet = HashSet();
bool findTarget(TreeNode? root, int k) {
if (root == null) return false;
//Now k= num1 + num2 then here num1 is data and num2 is root.val
int data = k - root.val;
if (hashSet.contains(data)) {
//Check the data is contain set
return true;
} else {
hashSet.add(root.val);
}
return findTarget(root.left, k) ? true : findTarget(root.right, k);
}
}