You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classSolution {
// Runtime: 437 ms, faster than 47.06% of Dart online submissions for Path Sum.// Memory Usage: 143.1 MB, less than 70.59% of Dart online submissions for Path Sum.boolhasPathSum(TreeNode? root, int targetSum) {
// if the root is null means empty which means we have nothing to begin withif (root ==null) returnfalse;
// now if there is nothing on the left side and also on the// right side of the tree and the which mean there is only one value// at the top of the root and it's the same that we are looking for// than congratulationsif (root.left ==null&& root.right ==null&& root.val == targetSum)
returntrue;
// if not than we will walk on the left side of the tree to find the target value// by decrementing the value from the root valuereturnhasPathSum(root.left, targetSum - root.val) ||// same as above but on the right side of the treehasPathSum(root.right, targetSum - root.val);
}
}
Solution - 2 PostOrder traversal
import'dart:collection';
classSolution {
// Runtime: 619 ms, faster than 17.65% of Dart online submissions for Path Sum.// Memory Usage: 145.5 MB, less than 29.41% of Dart online submissions for Path Sum.boolhasPathSum(TreeNode? root, int targetSum) {
// queue is our stack which hold our value of the treeQueue<TreeNode> stack =Queue();
// root is null means no valueif (root ==null) returnfalse;
// we add the value to the our stack
stack.add(root);
// if the pervious value of the tree is nullTreeNode? pre =null;
int target =0;
// assuming that our stack is not emptywhile (stack.isNotEmpty) {
// the last element on the tree from bottom is our first element because// we walking from bottom to topTreeNode? top = stack.last;
// if the previous value is null and previous value is not same on both side// of the treeif (pre ==null|| (pre != top.left && pre != top.right)) {
// we add the value to our target from bottom to top
target += top.val;
// if the value on the right is not null than we will add those to our stackif (top.right !=null) stack.add(top.right!);
// if the value on the left is not null than we will add those to our stackif (top.left !=null) stack.add(top.left!);
} else {
// our previous will hold the top value
pre = top;
// and than we will keep removing the last value
stack.removeLast();
// and removing that value from the tree value - bottom to top
target -= top.val;
}
// if the left and right side of the tree are both nullif (top.left ==null&& top.right ==null) {
// and the target sum is the the value we are looking for than congratulationif (target == targetSum) returntrue;
// again our previous will be top(from bottom)// to keep track of the value
pre = top;
// removing the last element from the stack
stack.removeLast();
// removing the target value from the the tree value
target -= top.val;
}
}
// return g false - means found nothingreturnfalse;
}
}
Solution - 3 Iterative
classSolution {
// Runtime: 483 ms, faster than 41.18% of Dart online submissions for Path Sum.// Memory Usage: 143.5 MB, less than 47.06% of Dart online submissions for Path Sum.boolhasPathSum(TreeNode? root, int targetSum) {
returncalSum(root, targetSum, 0) ==1;
}
intcalSum(TreeNode? root, int targetSum, int sum) {
if (root ==null) return0;
int currentSum = root.val + sum;
if (root.left ==null&& root.right ==null&& currentSum == targetSum)
return1;
returncalSum(root.left, targetSum, currentSum) ==1?1:calSum(root.right, targetSum, currentSum);
}
}
// Definition for a binary tree node.typeTreeNodestruct {
ValintLeft*TreeNodeRight*TreeNode
}
// Runtime: 0 ms, faster than 100.00% of Go online submissions for Path Sum.// Memory Usage: 4.6 MB, less than 94.24% of Go online submissions for Path Sum.funchasPathSum(root*TreeNode, targetSumint) bool {
ifroot==nil {
returnfalse
}
ifroot.Left==nil&&root.Right==nil {
returnroot.Val==targetSum
}
returnhasPathSum(root.Left, targetSum-root.Val) ||hasPathSum(root.Right, targetSum-root.Val)
}