Tree: Inorder Traversal

  • + 0 comments

    Python

    def inOrder(root):
        if root is None:
            return
        inOrder(root.left)
        print(root.info,end=" ")
        inOrder(root.right)