ash0x0's Obsidian Quartz

Home

❯

cs

❯

DSA

❯

Data Structures

❯

Trees

❯

Operations

❯

Traversal

❯

Inorder Traversal

Inorder Traversal

Jul 21, 20251 min read

  1. Traverse the left subtree.
  2. Visit the root.
  3. Traverse the right subtree.

For Binary Search Tree (BST) we can retrieve all the data in sorted order using in-order traversal.

94. Binary Tree Inorder Traversal


Graph View

Backlinks

  • Binary Tree
  • Depth First Search
  • Postorder Traversal
  • Traversal
  • Tree

Created with Quartz v4.5.1 © 2025

  • GitHub
  • Discord Community