Skip to main content

in-order-traversal

Problem Description​

Given the root of a binary tree, return the inorder traversal of its nodes' values.

Examples​

Example 1: alt text

Input: root = [1,null,2,3]
Output: [1,2,3]

Example 2:

Input: root = []
Output: []

Example 3:

Input: root = [1]
Output: [1]

Constraints​

  • The number of nodes in the tree is in the range [0, 100].
  • -1000 <= Node.val <= 1000

Solution for Binary Tree Pre Order Traversal​

Intuition​

  • Recursive is very easy try with iterative way

Code in Different Languages​

Written by @parikhitkurmi
//python

# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def inorderTraversal(self, root: Optional[TreeNode]) -> List[int]:

def InOrder(root,arr):

if root is None:
return

else:
InOrder(root.left,arr)
arr.append(root.val)
InOrder(root.right,arr)

return arr

return InOrder(root,[])


References​