Step-By-Step Directions from a Binary Tree Node to Another - Leetcode 2096 - Python

  Рет қаралды 11,432

NeetCodeIO

NeetCodeIO

Күн бұрын

Пікірлер: 63
@thewalkingsnail
@thewalkingsnail 4 ай бұрын
I implemented this algo but was getting "Memory limit exceeded" errors on the 287th test case because I used a string for the path instead of a list like he does here. If you see "Memory Limit Exceeded" switch to a mutable list instead of (I guess) duplicating the path string at each recursive case! :)
@reactionchamber
@reactionchamber 4 ай бұрын
I had exactly the same problem! Thanks for the explanation.
@tunno4586
@tunno4586 4 ай бұрын
same
@rajavignesh7216
@rajavignesh7216 4 ай бұрын
Yeah
@woodylucas
@woodylucas 4 ай бұрын
The process needs to be changed by doing BFS using a queue, which can be implemented iteratively. This avoids the risk of stack overflow, making it more memory-efficient for large or unbalanced trees. BFS also has the advantage of finding the shortest path in terms of edge count, which aligns well with our goal of finding the shortest direction path.
@yuvarajyuvi9691
@yuvarajyuvi9691 4 ай бұрын
I converted the tree to a graph and did a bfs, I thought it couldn't be solved with a trivial tree traversal, but this is pretty smart solution. I haven't thought of this
@sayanbiswas2116
@sayanbiswas2116 4 ай бұрын
how you converted in a graph?! i wanted to do this but didnt knew how
@DeathSugar
@DeathSugar 4 ай бұрын
@@sayanbiswas2116 just put it in queue/stack. but not sure how he did it with bfs. it should eat O(n) memory if he managed to make it
@_sf_editz1870
@_sf_editz1870 4 ай бұрын
@@sayanbiswas2116 We mark the parents of each node with the help of hashmap so we could move in up direction also
@phantomhawk489
@phantomhawk489 4 ай бұрын
​@@sayanbiswas2116 store parents in map and while doing left and right traversal also do parent traversal of parent!=null
@33galactus
@33galactus 4 ай бұрын
You can either store parent of each node in a hashmap OR in Python simply add parent pointer to the node object itself. Then simply run BFS from startNode. Each node will have three neighbors (node.left, node.right, node.parent). Here is the code snippet to add the parent pointer (and find the startNode).: ``` # create a parent pointer for each node def createParentPointer(node, p): nonlocal startNode if node.val == startValue: # find startNode = node node.parent = p if node.left: createParentPointer(node.left, node) if node.right: createParentPointer(node.right, node) startNode = None createParentPointer(root, None) ```
@finemechanic
@finemechanic 4 ай бұрын
Technically you shouldn't have used recursion in this problem because the description tells the maximal n is 10**5 and in the worst case you will hit the default Python recursion limit (which is 1000 as I recall). They at Leetcode shall either make a testcase against recursive solution or provide a guarantee on the maximal tree height.
@NeetCodeIO
@NeetCodeIO 4 ай бұрын
Yeah I guess that's the only downside of python, more strict acceptance criteria. Ive seen really inefficient solutions pass with c++ for example
@arunpranavat
@arunpranavat 4 ай бұрын
I literally feel blessed to have you. Hail NeetCode! Long live NeetCode. 😇
@abhishekkumar-fe8lw
@abhishekkumar-fe8lw 4 ай бұрын
class Solution { public String getDirections(TreeNode root, int startValue, int destValue) { String startPath=dfs(root,startValue,new StringBuilder()); String destPath=dfs(root,destValue,new StringBuilder()); StringBuilder ans=new StringBuilder(); int i=0; while(i
@MP-ny3ep
@MP-ny3ep 4 ай бұрын
Another great explanation. Thank you !
@sergei200110
@sergei200110 4 ай бұрын
Great explanation, Thank you !
@kumarsanu2499
@kumarsanu2499 4 ай бұрын
And here i did DFS on tree by storing parent pointer , couldn't came up with this smart solution
@AnordinaryMan007
@AnordinaryMan007 4 ай бұрын
This question was pretty good.
@_sf_editz1870
@_sf_editz1870 4 ай бұрын
Its a very good solution
@Cheng-K
@Cheng-K 4 ай бұрын
Brilliant! Thanks!
@neks2081
@neks2081 4 ай бұрын
Dear neetcode, please make a video on LCA of binary tree 🙏
@drishtirajai7848
@drishtirajai7848 4 ай бұрын
Such a masterpiece!
@GauravKumar-qe7iu
@GauravKumar-qe7iu 4 ай бұрын
JAVA Solution: class Solution { public static String start; public static String dest; public String getDirections(TreeNode root, int startValue, int destValue) { start = null; dest = null; helper(root, startValue, destValue, new StringBuilder()); StringBuilder res = new StringBuilder(); int i = 0; int minLen = Math.min(start.length(), dest.length()); while (i < minLen && start.charAt(i) == dest.charAt(i)) i++; for (int j = i; j < start.length(); j++) res.append("U"); for (int j = i; j < dest.length(); j++) { res.append(dest.charAt(j)); } return res.toString(); } private boolean helper(TreeNode root, int startValue, int destValue, StringBuilder tmp) { if (root == null) return false; if (root.val == startValue) start = tmp.toString(); if (root.val == destValue) dest = tmp.toString(); if (start != null && dest != null) return true; tmp.append("L"); if (helper(root.left, startValue, destValue, tmp)) return true; tmp.setLength(tmp.length() - 1); tmp.append("R"); if (helper(root.right, startValue, destValue, tmp)) return true; tmp.setLength(tmp.length() - 1); return false; } }
@dishagupta7446
@dishagupta7446 4 ай бұрын
Such a good solution
@NeetCodeIO
@NeetCodeIO 4 ай бұрын
Glad it's helpful :)
@dishagupta7446
@dishagupta7446 3 ай бұрын
@@NeetCodeIO this was asked to me in interview today and I was so happy. Thanks alot
@NeetCodeIO
@NeetCodeIO 3 ай бұрын
@@dishagupta7446 OH that;s great!
@pastori2672
@pastori2672 4 ай бұрын
i got it with a dfs + bfs solution and actually came up with ur solution but got MLE 😭
@MustafaAlqaseer-y9d
@MustafaAlqaseer-y9d 4 ай бұрын
Hey! I'm a new sub to the neetcode course and I'm wondering when will the "python coding for interviews" course coming out? Thanks
@NeetCodeIO
@NeetCodeIO 4 ай бұрын
Just released it last night. Will prob add one or two more sections for math & misc topics.
@GundeboinaDheeraj
@GundeboinaDheeraj 4 ай бұрын
why cant you make some videos on trees in python ? that may help us really a lot
@slizverg23
@slizverg23 4 ай бұрын
he did a lot of tree-problem videos actually.
@brayn7504
@brayn7504 4 ай бұрын
Hello, could you please tell me tools or devices you use in order to edit your videos? I wanted to know how to write on top of screen to explain your reasoning while recording. Thank you.
@NeetCodeIO
@NeetCodeIO 4 ай бұрын
I use paint 3d with mouse and streamlabs obs for screen capture. I use Windows 11
@brayn7504
@brayn7504 4 ай бұрын
@@NeetCodeIO Much appreciated. Thank you for the response. Do you use Screen pen to write on an image? or using mouse for that too?
@aashishbathe
@aashishbathe 4 ай бұрын
I got the solution but was getting memory limit exceeded ☹️
@pratyushthakur8478
@pratyushthakur8478 4 ай бұрын
same
@pratikpatel2512
@pratikpatel2512 4 ай бұрын
@@aashishbathe I got the same initially because of string manipulation. Then converted code to use array which solved the issue.
@sidazhong2019
@sidazhong2019 2 ай бұрын
Same man, HOWEVER, I featured it out! I was using dfs(path + ["R"]) to avoid backtracking, I supposed you did too. That's the reason you got memory exceeded, it's actually stack overflow.
@nanicreations7729
@nanicreations7729 4 ай бұрын
@maanas_sehgal
@maanas_sehgal 4 ай бұрын
I tried it with the lowest common ancestor but wasn't able to figure out how to get that string😅
@pratikpatel2512
@pratikpatel2512 4 ай бұрын
I tried the same bro.
@thunderstorm-d2c
@thunderstorm-d2c 4 ай бұрын
The string part is a little bit tricky, and certainly make it more like a backtracking question. I separated the conditions to three. 1. The LCA is the start node, traverse from the LCA to the end node and append ''L" or "R' based on the path choice. 2. The LCA is the end node, traverse from the LCA to the start node and append ''U", since it is always going up. 3. The LCA is in the middle, it is the combined situation of the two described above. You need to go to the end node from the LCA(append 'R' or 'l' in path), and goes from the LCA from the start node (append 'U' in path). Certainly the code is not as good as what nc provided in the video, and takes a long time to code. class Solution: def getDirections(self, root: Optional[TreeNode], startValue: int, destValue: int) -> str: def lca(root,lv,rv): if not root: return None if root.val == lv or root.val == rv: return root lr = lca(root.left,lv,rv) rr = lca(root.right,lv,rv) if lr and rr: return root else: if lr: return lr elif rr: return rr else: return None node = lca(root,startValue,destValue) def traverse(node,nv,flag,path): if not node: return False if node.val == nv: return True if flag != 'U': path.append('L') lr = traverse(node.left,nv,flag,path) if lr: return True path.pop() path.append('R') rr = traverse(node.right,nv,flag,path) if rr: return True path.pop() else: path.append('U') lr = traverse(node.left,nv,flag,path) if lr: return True rr = traverse(node.right,nv,flag,path) if rr: return True path.pop() return False path = [] if node.val == startValue: traverse(node,destValue,'D',path) return ''.join(path) elif node.val == destValue: traverse(node,startValue,'U',path) return ''.join(path) else: p1 = [] p2 = [] traverse(node,startValue,'U',p1) traverse(node,destValue,'D',p2) return ''.join(p1 + p2)
@iuri0072
@iuri0072 4 ай бұрын
for some reason, in my code, it didn't return as yours... it was returning as a list. to solve it, i had to rewrite as: return "".join(["U"] * len(startPath[i:]) + destPath[i:]) but ok... it worked in the end
@reb6482
@reb6482 4 ай бұрын
Any difference between doing BFS and DFS? My answer is pretty much the same but I'm in the second bellcurve of the runtime
@corrogist692
@corrogist692 4 ай бұрын
are you using BFS instead?
@reb6482
@reb6482 4 ай бұрын
@@corrogist692yeah I’m using BFS, solution is pretty much the same just runtime I’m very behind on the LC statistics
@TheModernSamurai
@TheModernSamurai 4 ай бұрын
Lol.... do the same. DAMN. Thing..... I like you bro.....
@_sf_editz1870
@_sf_editz1870 4 ай бұрын
i coded the same in java but its giving tle class Solution { //NeetCode public String getDirections(TreeNode root, int startValue, int destValue) { String a = generatePaths(root , startValue , ""); //startPath String b = generatePaths(root , destValue , ""); //endPath //we just need to skip the part until the LCA and replace U in startPath int i=0; while(i
@GeetainSaar
@GeetainSaar 4 ай бұрын
dont set add in very begining it hangs
@pratikpatel2512
@pratikpatel2512 4 ай бұрын
I came up with the same solution. I extracted the path to the start and destination in a single pass and rest the same. class Solution: def getDirections(self, root: Optional[TreeNode], startValue: int, destValue: int) -> str: path = [] self.root_to_start = "" self.root_to_dest = "" def dfs(node, start, dest): if node.val == start: self.root_to_start = "".join(path) if node.val == dest: self.root_to_dest = "".join(path) if self.root_to_start and self.root_to_dest: return if node.left: path.append('L') dfs(node.left, start, dest) path.pop() if node.right: path.append('R') dfs(node.right, start, dest) path.pop() dfs(root, startValue, destValue) len_start_path = len(self.root_to_start) len_dest_path = len(self.root_to_dest) idx = 0 while len_start_path > idx and len_dest_path > idx: if self.root_to_start[idx] != self.root_to_dest[idx]: break idx += 1 return "U" * (len_start_path - idx) + self.root_to_dest[idx:]
@floatingpoint7629
@floatingpoint7629 4 ай бұрын
you are early today 😂
@RK-cd
@RK-cd 4 ай бұрын
Damnn
@jayrathod9271
@jayrathod9271 4 ай бұрын
Non recursve solution def getDirections(self, root: Optional[TreeNode], startValue: int, destValue: int) -> str: leftPath,rightPath='','' is_left,is_right=False,False st=[[root,'']] while len(st)>0 and (not is_left or not is_right): node,curr=st.pop() if node.val==startValue: leftPath = curr is_left=True print('reach start') if node.val==destValue: rightPath = curr print('reach dest') is_right=True if node.left: st.append([node.left,curr+'L']) if node.right: st.append([node.right,curr+'R']) i,j = 0 , 0 n,m = len(leftPath),len(rightPath) while i
@TenzDelek
@TenzDelek 4 ай бұрын
bro got carried away lol
@GeetainSaar
@GeetainSaar 4 ай бұрын
for god pls let give copy of your code in description otherwise I will quit coding one day
@shashanksreepathi7184
@shashanksreepathi7184 4 ай бұрын
First!
@mdrashedulhasanmr8456
@mdrashedulhasanmr8456 4 ай бұрын
damn🤣🤣🤣🤣
@GeetainSaar
@GeetainSaar 4 ай бұрын
i will appreciate if you giv your python to copy
Why is everyone LYING?
7:56
NeetCodeIO
Рет қаралды 349 М.
Delete Nodes And Return Forest - Leetcode 1110 - Python
13:28
NeetCodeIO
Рет қаралды 9 М.
Симбу закрыли дома?! 🔒 #симба #симбочка #арти
00:41
Симбочка Пимпочка
Рет қаралды 4,4 МЛН
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 94 МЛН
Number of Good Leaf Nodes Pairs - Leetcode 1530 - Python
20:22
NeetCodeIO
Рет қаралды 11 М.
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 329 М.
The LeetCode Fallacy
6:08
NeetCode
Рет қаралды 574 М.
I Solved 100 LeetCode Problems
13:11
Green Code
Рет қаралды 245 М.
Distribute Coins in Binary Tree - Leetcode 979 - Python
17:41
NeetCodeIO
Рет қаралды 17 М.
C++ vs Rust: which is faster?
21:15
fasterthanlime
Рет қаралды 403 М.