Traverse tree and return a node instance after n traversals in python
The end goal is to copy a node from one tree to another tree. I want to visit each node in a binary tree and return a node instance after a number of traverses. I cannot seem to figure out how to return a specific node. Every time the node returned matches the id of the root node since I pass the root node to the function.
class node():
def __init__(self):
self.parent = None
self.left = None
self.right = None
def randnode(self, target):
global count
if target == count:
# print 'At target', '.'*25, target
return self
else:
if self.left is not None:
count += 1
self.left.randnode(target)
if self.right is not None:
count += 1
self.right.randnode(target)
Asked by: Melissa198 | Posted: 06-12-2021
Answer 1
If you're doing a DFS and counting iterations, you don't even need recursion, just a stack of places to try, and popping/pushing data.
def dfs(self,target):
count = 0
stack = [start]
while stack:
node = stack.pop()
if count == target:
return node
if node is None: # since we push left/right even if None
continue # stop pushing after we hit None node
stack.extend([self.left,self.right])
return -1 # ran out of nodes before count
Bonus points : swapping stack to a queue for BFS
Apart from that, you might want to pass the count as a parameter, like all self-respecting recursive calls, you can make this stateless ;-)
class node():
def __init__(self):
self.parent = None
self.left = None
self.right = None
def randnode(self, target,count=0):
if target == count:
# print 'At target', '.'*25, target
return self
if self.left is not None:
return self.left.randnode(target,count + 1)
if self.right is not None:
return self.right.randnode(target,count + 1)
Answered by: Thomas783 | Posted: 07-01-2022
Similar questions
python - Recursion - how do you extract from specific traversals
Lets say you have a string: abcde
And a set of strings: ab, cde, abcd, a, bcd, cd
You want to find all possible concatenations from the set that form the string.
You can use recursion to traverse through all possible concatenations from the set, but how would you return only those that satisfy the solution?
The possible combinations:
ab - cde - yes
ab - cd - no
abcd - no
a ...
arrays - Can parallel traversals be done in MATLAB just as in Python?
Using the zip function, Python allows for loops to traverse multiple sequences in parallel.
for (x,y) in zip(List1, List2):
Does MATLAB have an equivalent syntax? If not, what is the best way to iterate over two parallel arrays at the same time using MATLAB?
python - Recursion - how do you extract from specific traversals
Lets say you have a string: abcde
And a set of strings: ab, cde, abcd, a, bcd, cd
You want to find all possible concatenations from the set that form the string.
You can use recursion to traverse through all possible concatenations from the set, but how would you return only those that satisfy the solution?
The possible combinations:
ab - cde - yes
ab - cd - no
abcd - no
a ...
python - Writing traversals to a file in python3.x issue
I am trying to traverse a heap, and write the traversal to a file but I am failing miserably.
I keep getting an issue with the maximum traversal depth that spams my terminal when all I want is for the node to be printed out in the file.
algorithm - Tree Traversals, recursion is faster than iteration in python?
I have implement tree preorder traversal in python, but found that my recursive version is faster than iteration version.
code is as below:
from __future__ import print_function
import time
class Tree():
def __init__(self, value):
self.value = value
self.left = None
self.right = None
def build_tree(string):
nodes = [0] + [Tree(s) for s in string]
for i in range...
python - Can a directed graph have two DFS traversals?
Here is my DFS traversal algorithm (Recursive approach):
def dfs(v,visited) :
for i in Graph[v] :
if i not in visited :
visited.append(i)
print(i)
dfs(i,visited)
n = int(input())
Graph = {}
for i in range(n) :
name= input(print("Enter ",i+1," vertex name"))
list...
python - Traversals of Binary Trees
I am trying to implement in-order, pre-order, and post-order traversals of a binary tree. My implementation seems to work for trees with a small number of nodes (as I have checked by hand) but the online software I am using says there are cases that my implementation fails (it does not provide the input that causes my implementation to fail). I have looked through several other threads on this site but cannot seem to find ...
Still can't find your answer? Check out these communities...
PySlackers | Full Stack Python | NHS Python | Pythonist Cafe | Hacker Earth | Discord Python