You are viewing a single comment's thread. Return to all comments →
Python-
def preOrder(root): #Write your code here cur = root if cur: print(cur.info, end=' ') if cur.left: preOrder(cur.left) if cur.right: preOrder(cur.right) return
Seems like cookies are disabled on this browser, please enable them to open this website
Tree: Preorder Traversal
You are viewing a single comment's thread. Return to all comments →
Python-