Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

inorder traversal search

class Node:
    def __init__(self, key):
        self.left = None
        self.right = None
        self.val = key

def printInorder(root):
    if root:
        printInorder(root.left)
        print(root.val),
        printInorder(root.right)

if __name__ == "__main__":
    root = Node(1)
    root.left = Node(2)
    root.right = Node(3)
    root.left.left = Node(4)
	root.left.right = Node(5)

print("
 Inorder traversal of binary tree is")
printInorder(root)
print(root)
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #inorder #traversal #search
ADD COMMENT
Topic
Name
2+5 =