Trees and Binary Search Trees

A binary search tree keeps smaller keys left and larger keys right, giving O(log n) search, insert and delete when balanced; an inorder traversal visits keys in sorted order, and self-balancing variants use rotations to bound the height.

Key formulas & points

Skim these first — then read the full notes below.

  • Balanced trees (AVL, red-black) keep height O(log n) via rotations
  • Deletion cases: leaf, one child, two children (replace with successor)
  • B-trees generalise BSTs for disk-based storage

Topic details

Introduction

This topic covers hierarchical search structures. You perform BST search, insertion and the three deletion cases, understand how tree height controls performance, and see how balancing (AVL/red-black) or high fan-out (B-trees) keeps operations logarithmic even in the worst case.

Key relations & formulas

Formulas (Indian textbook notation)

  • BSTproperty:leftsubtree<node<rightsubtreeBST property: left subtree < node < right subtree

Formulas (Indian textbook notation)

  • atreeofheighthhasatmost2(h+1)1nodesa tree of height h has at most 2^(h+1) - 1 nodes

Formulas (Indian textbook notation)

  • inordertraversalofaBSTyieldssortedorderinorder traversal of a BST yields sorted order

Notation and sign conventions

Relation 1 —
BSTproperty:leftsubtree<node<rightsubtreeBST property: left subtree < node < right subtree

Formulas (Indian textbook notation)

  • BSTproperty:leftsubtree<node<rightsubtreeBST property: left subtree < node < right subtree
Write this relation with symbols exactly as in Schaum Ds — Standard reference before substituting numbers. Examiners award partial marks for a correct setup even when arithmetic slips.
Relation 2 —
a tree of height h has at most 2^

Formulas (Indian textbook notation)

  • atreeofheighthhasatmost2(h+1)1nodesa tree of height h has at most 2^(h+1) - 1 nodes
Write this relation with symbols exactly as in Schaum Ds — Standard reference before substituting numbers. Examiners award partial marks for a correct setup even when arithmetic slips.
Relation 3 —
inordertraversalofaBSTyieldssortedorderinorder traversal of a BST yields sorted order

Formulas (Indian textbook notation)

  • inordertraversalofaBSTyieldssortedorderinorder traversal of a BST yields sorted order
Write this relation with symbols exactly as in Schaum Ds — Standard reference before substituting numbers. Examiners award partial marks for a correct setup even when arithmetic slips.

Concept in depth

A BST orders keys so that at each node you discard half the remaining possibilities, giving logarithmic search when the tree is balanced. The catch is that inserting sorted data into a plain BST produces a degenerate linked list with O(n) operations, which is why self-balancing trees exist: AVL trees rotate to keep subtree heights within one, and red-black trees relax that slightly for cheaper updates. The two-children deletion case is handled by replacing the node with its inorder successor (smallest key in the right subtree) to preserve ordering. B-trees push this idea to disk, storing many keys per node to minimise expensive block reads.

Assumptions and validity limits

State assumptions explicitly before using any relation for trees and binary search trees — steady state, uniform properties, linear elastic material, ideal gas, incompressible flow, etc., as applicable.
Wrong assumptions invalidate the entire solution even when the formula is correct. In Data Structures viva and GATE descriptive questions, listing valid assumptions often earns separate marks.

Step-by-step problem approach

1. Read the question and list given data with SI units (common in Data Structures papers).
2. Draw a neat labelled diagram where applicable — examiners in Indian universities award diagram marks even when arithmetic slips.
3. Identify which relation from this topic applies to trees and binary search trees.
4. Use equation 1:
BSTproperty:leftsubtree<node<rightsubtreeBST property: left subtree < node < right subtree
.
5. Use equation 2:
a tree of height h has at most 2^
.
6. Substitute values, compute, and verify units and sign (direction).
7. State conclusion in one line — e.g. safe/unsafe, stable/unstable, feasible/infeasible.

Applications & exam relevance

Trees and Binary Search Trees appears in interviews and systems programming. In Indian it software curricula this topic is tested because it connects theory to organising data for efficient algorithms.
GATE and semester exams often combine trees and binary search trees with earlier units — revise prerequisites before attempting mixed problems.
Industry interview panels sometimes ask: "Where did you use trees and binary search trees?" — answer with a lab, mini-project, or plant visit example if possible.

Common mistakes in exams

Students forget that an unbalanced BST degrades to O(n), mishandle the two-children deletion (breaking the ordering), and confuse tree height with the number of nodes. Assuming any binary tree is a BST without checking the ordering property is another error.

Quick revision checklist

Before attempting trees and binary search trees problems, confirm you can:
1. Balanced trees (AVL, red-black) keep height O(log n) via rotations
2. Deletion cases: leaf, one child, two children (replace with successor)
3. B-trees generalise BSTs for disk-based storage
Revise the solved examples in Schaum Ds — Standard reference and one previous-year GATE or university paper for this unit.

Worked examples

Try the problem first — open the solution when you are ready to check.

BST inorder output

Problem

Insert 50, 30, 70, 20, 40 into an empty BST. What does an inorder traversal print?

Solution

Inorder of a BST is sorted: 20, 30, 40, 50, 70. This is why inorder traversal is a common way to verify or sort BST contents.

Conceptual check — Trees and Binary Search Trees

Problem

In a Data Structures semester or GATE paper you are asked: "State the main assumption, the governing relation, and one practical consequence of trees and binary search trees." What should a complete answer include?

📖 Standard books (India)

  • Schaum DsStandard reference

    Read: Syllabus unit

    Referenced in Indian B.Tech syllabus