Chapters

Hide chapters

Data Structures & Algorithms in Dart

Second Edition · Flutter · Dart 3.0 · VS Code 1.78

Section VI: Challenge Solutions

Section 6: 21 chapters
Show chapters Hide chapters

10. Binary Search Trees
Written by Jonathan Sande

A binary search tree, or BST, is a data structure that facilitates fast lookup, insert and removal operations. Consider the following decision tree where picking a side forfeits all the possibilities of the other side, cutting the problem in half:

no yes no yes no yes no yes yes no Should I go the gym? Did I go yesterday? Did I go jogging yesterday? Am I still feeling sore? Did I run 5km? Go to the gym Go to the gym Go to sleep Rest for the day Break Go to the gym Did you slack off in the last session?

Once choose a branch, there is no looking back. You keep going until you make a final decision at a leaf node. Binary trees let you do the same thing. Specifically, a binary search tree imposes two rules on the binary tree you saw in the previous chapter:

  • The value of a left child must be less than the value of its parent.
  • Consequently, the value of a right child must be greater than or equal to the value of its parent.

Binary search trees use these properties to save you from performing unnecessary checking. As a result, lookup, insert and removal have an average time complexity of O(log n), which is considerably faster than linear data structures such as lists and linked lists.

In this chapter, you’ll learn about the benefits of BST relative to a list and, as usual, implement the data structure from scratch.

List vs. BST

To illustrate the power of using BST, you’ll look at some common operations and compare the performance of lists against the binary search tree.

Consider the following two collections:

1 25 88 18 45 4 40 105 20 77 70 40 18 77 1 20 70 105 4 25 45 88

Lookup

There’s only one way to do element lookups for an unsorted list. You need to check every element in the list from the start:

1 25 88 18 45 4 40 105 20 77 70
Searching for 105

That’s why list.contains is an O(n) operation.

Note: If a list is sorted, as the one in the diagram above is, you can use a binary search to lookup a value in O(log n) time. You’ll come back to this topic in Chapter 13, “Binary Search.”

Now consider the case for binary search trees:

40 18 77 20 105 88 45 1 70 4 25
Searching for 105

Every time the search algorithm visits a node in the BST, it can safely make these two assumptions:

  • If the search value is less than the current value, it must be in the left subtree.
  • If the search value is greater than the current value, it must be in the right subtree.

By leveraging the rules of the BST, you can avoid unnecessary checks and cut the search space in half every time you make a decision. That’s why element lookup in BST is an O(log n) operation.

Insertion

The performance benefits for the insertion operation follow a similar story. Assume you want to insert 0 into a collection. Inserting at the front of the list causes all other elements to shift backwards by one position. It’s like butting in line. Everyone in the line behind your chosen spot needs to make space for you by shuffling back:

1 25 88 18 45 4 40 105 20 77 70 1 0 25 88 18 45 4 40 105 20 77 70
Inserting 0 in sorted order

Inserting into a list has a time complexity of O(n).

Insertion into a binary search tree is much faster. By leveraging the rules of BST, you only need to make three traversals in the example below to find the location for the insertion, and you don’t have to shuffle all the elements around!

40 18 77 20 105 88 45 1 70 0 25

Inserting elements in BST is an O(log n) operation.

Removal

Similar to insertion, removing an element in a list also triggers a shuffling of elements:

1 25 88 18 45 4 40 105 20 77 70 1 88 18 45 4 40 105 20 77 70 remove 25
Removing 25 from the list

This behavior also goes along with the lineup analogy. If you leave the middle of the line, everyone behind you needs to shuffle forward to take up the empty space.

Here’s what removing a value from a binary search tree looks like. You just hop down the tree until you find the value and then you delete that node:

40 18 77 20 105 88 45 1 70 0 25

Nice and easy! There are complications to manage when the node you’re removing has children, but you’ll look into that later. Even with those complications, removing an element from a BST is still an O(log n) operation.

Binary search trees drastically reduce the number of steps for add, remove and lookup operations. Now that you understand the benefits of using a binary search tree, you can move on to the actual implementation.

Implementation

Open up the starter project for this chapter. In the lib folder, you’ll find binary_node.dart with the BinaryNode type you created in the previous chapter. Create a new file named binary_search_tree.dart in the same folder and add the following code to it:

import 'binary_node.dart';

class BinarySearchTree<E extends Comparable<E>> {
  BinaryNode<E>? root;

  @override
  String toString() => root.toString();
}

By definition, binary search trees can only hold Comparable values.

Inserting Elements

In accordance with BST rules, nodes of the left child must contain values less than the current node. Nodes of the right child must contain values greater than or equal to the current node. You’ll implement the insert method while respecting these rules.

Adding an Insert Method

Add the following to BinarySearchTree:

void insert(E value) {
  root = _insertAt(root, value);
}

BinaryNode<E> _insertAt(BinaryNode<E>? node, E value) {
  // 1
  if (node == null) {
    return BinaryNode(value);
  }
  // 2
  if (value.compareTo(node.value) < 0) {
    node.leftChild = _insertAt(node.leftChild, value);
  } else {
    node.rightChild = _insertAt(node.rightChild, value);
  }
  // 3
  return node;
}

You expose insert to users, while using _insertAt as a private helper method:

  1. This is a recursive method, so it requires a base case for terminating recursion. If the current node is null, you’ve found the insertion point and you return the new BinaryNode.
  2. Because element types are comparable, you can perform a comparison. This if statement controls which way the next _insertAt call should traverse. If the new value is less than the current value, that is, if compareTo returns a negative number, you’ll look for an insertion point on the left child. If the new value is greater than or equal to the current value, you’ll turn to the right child.
  3. Return the current node. This makes assignments of the form node = _insertAt(node, value) possible since _insertAt will either create node, if it was null, or return node, if it was not null.

Testing it Out

Open bin/starter.dart and replace the contents with the following:

import 'package:starter/binary_search_tree.dart';

void main() {
  final tree = BinarySearchTree<num>();
  for (var i = 0; i < 5; i++) {
    tree.insert(i);
  }
  print(tree);
}

You need to mark the type as num rather than int because num implements Comparable while int doesn’t.

Run the code above and you should see the following output:

   ┌── 4
  ┌──3
  │ └── null
 ┌──2
 │ └── null
┌──1
│ └── null
0
└── null

Balanced vs. Unbalanced Trees

The previous tree looks a bit unbalanced, but it does follow the rules. However, this tree layout has undesirable consequences. When working with trees, you always want to achieve a balanced format:

2 3 1 0 4 0 1 2 3 4 balanced unbalanced

An unbalanced tree affects performance. If you insert 5 into the unbalanced tree you’ve created, it becomes an O(n) operation:

5 5 3 4 0 1 2 3 4 5 unbalanced balanced 1 0 2

You can create structures known as self-balancing trees that use clever techniques to maintain a balanced structure, but you’ll have to wait for those details until Chapter 11, “AVL Trees.” For now, you’ll build a sample tree with a bit of care to keep it from becoming unbalanced.

Building a Balanced Tree

Add the following function below main:

BinarySearchTree<int> buildExampleTree() {
  var tree = BinarySearchTree<num>();
  tree.insert(3);
  tree.insert(1);
  tree.insert(4);
  tree.insert(0);
  tree.insert(2);
  tree.insert(5);
  return tree;
}

Replace the contents of main with the following:

final tree = buildExampleTree();
print(tree);

Run the code. You should see the following in the console:

 ┌── 5
┌──4
│ └── null
3
│ ┌── 2
└──1
 └── 0

Much nicer!

Finding Elements

Finding an element in a binary search tree requires you to traverse through its nodes. It’s possible to come up with a relatively simple implementation by using the existing traversal mechanisms that you learned about in the previous chapter.

Add the following method to BinarySearchTree:

bool contains(E value) {
  if (root == null) return false;
  var found = false;
  root!.traverseInOrder((other) {
    if (value == other) {
      found = true;
    }
  });
  return found;
}

Next, head back to main to test this out:

final tree = buildExampleTree();
if (tree.contains(5)) {
  print("Found 5!");
} else {
  print("Couldn’t find 5");
}

You should see the following in the console:

Found 5!

In-order traversal has a time complexity of O(n). Thus, this implementation of contains has the same time complexity as an exhaustive search through an unsorted list.

You can do better.

Optimizing contains

Relying on the properties of BST can help you avoid needless comparisons. Back in BinarySearchTree, replace contains with the following:

bool contains(E value) {
  // 1
  var current = root;
  // 2
  while (current != null) {
    // 3
    if (current.value == value) {
      return true;
    }
    // 4
    if (value.compareTo(current.value) < 0) {
      current = current.leftChild;
    } else {
      current = current.rightChild;
    }
  }
  return false;
}

The numbered comments refer to the following explanations:

  1. Set current to the root node.
  2. As long as current isn’t null, you’ll keep branching through the tree.
  3. If the current node’s value equals what you’re trying to find, return true.
  4. Otherwise, decide whether you’re going to check the left or the right child.

This implementation of contains is an O(log n) operation in a balanced binary search tree.

Removing Elements

Removing elements is a little more tricky because you need to handle a few different scenarios.

Removing a Leaf Node

Removing a leaf node is straightforward. Simply detach the leaf node:

3 1 2 4 0 5
removing 2

For non-leaf nodes, however, there are extra steps you must take.

Removing Nodes With One Child

When removing nodes with one child, you’ll need to reconnect that child with the rest of the tree:

3 5 0 1 2 4
removing 4, which has one child

Removing Nodes With Two Children

Nodes with two children are a bit more complicated, so a more complex example tree will better illustrate how to handle this situation. Assume that you have the following tree and that you want to remove the value 25:

50 75 25 12 37 63 45 32 17 27 33 10 87

Simply deleting the node presents a dilemma. You have two child nodes (12 and 37) to reconnect, but the parent node only has space for one child:

50 12 37 45 32 17 27 33 10 75 63 87

To solve this problem, you’ll implement a clever workaround. When removing a node with two children, replace the value you want to remove with the smallest value in the node’s right subtree. Based on the principles of BST, this is in the leftmost node of the right subtree. In the example, that means you’ll replace 25 with 27:

50 75 25 12 37 63 45 32 17 27 33 10 87

It’s important to note that this will produce a valid binary search tree. Because the new value was the smallest in the right subtree, all values in the right subtree will still be greater than or equal to the new value. And because the new value came from the right subtree, all values in the left subtree will be less than the new value.

After performing the replacement, you can simply remove the node you copied from, just a leaf node.

50 75 27 12 37 63 45 32 17 27 33 10 87

This will take care of removing nodes with two children.

Finding the Minimum Node in a Subtree

Open up binary_search_tree.dart. You’ll implement the remove method in just a minute, but first add the following helper extension at the bottom of the file:

extension _MinFinder<E> on BinaryNode<E> {
  BinaryNode<E> get min => leftChild?.min ?? this;
}

If leftChild exists for a particular node, then by definition, it has a lower value than the node itself. Recursively calling min on BinaryNode will then tell you the minimum node in a subtree.

Implementing remove

Now add these two methods to BinarySearchTree:

void remove(E value) {
  root = _remove(root, value);
}

BinaryNode<E>? _remove(BinaryNode<E>? node, E value) {
  if (node == null) return null;

  if (value == node.value) {
    // more to come
  } else if (value.compareTo(node.value) < 0) {
    node.leftChild = _remove(node.leftChild, value);
  } else {
    node.rightChild = _remove(node.rightChild, value);
  }
  return node;
}

This should look familiar to you. You’re using the same recursive setup with a private helper method as you did for insert. The method isn’t quite finished yet, though. Once you’ve found the node that you want to remove, you still need to separately handle the removal cases for (1) a leaf node, (2) a node with one child, and (3) a node with two children.

Handling the Removal Cases

Replace the // more to come comment above with the following code:

// 1
if (node.leftChild == null && node.rightChild == null) {
  return null;
}
// 2
if (node.leftChild == null) {
  return node.rightChild;
}
if (node.rightChild == null) {
  return node.leftChild;
}
// 3
node.value = node.rightChild!.min.value;
node.rightChild = _remove(node.rightChild, node.value);
  1. If the node is a leaf node, you simply return null, thereby removing the current node.
  2. If the node has no left child, you return node.rightChild to reconnect the right subtree. If the node has no right child, you return node.leftChild to reconnect the left subtree.
  3. This is the case in which the node to be removed has both a left and right child. You replace the node’s value with the smallest value from the right subtree. You then call remove on the right child to remove this swapped value.

Testing it Out

Head back to main and test remove by writing the following:

final tree = buildExampleTree();
print('Tree before removal:');
print(tree);
tree.remove(3);
print('Tree after removing root:');
print(tree);

You should see the output below in the console:

Tree before removal:
 ┌── 5
┌──4
│ └── null
3
│ ┌── 2
└──1
 └── 0

Tree after removing root:
┌── 5
4
│ ┌── 2
└──1
 └── 0

Successfully implemented!

In the next chapter you’ll learn how to create a self-balancing binary search tree called an AVL tree.

Challenges

Think you’ve gotten the hang of binary search trees? Try out these three challenges to lock the concepts down. As usual, you can find the answers in the Challenge Solutions section at the end of the book.

Challenge 1: Binary Tree or Binary Search Tree?

Write a function that checks if a binary tree is a binary search tree.

Challenge 2: Equality

Given two binary trees, how would you test if they are equal or not?

Challenge 3: Is it a Subtree?

Create a method that checks if the current tree contains all the elements of another tree.

Key Points

  • The binary search tree (BST) is a powerful data structure for holding sorted data.
  • Elements of the binary search tree must be comparable.
  • The time complexity for insert, remove and contains methods in a BST is O(log n).
  • Performance will degrade to O(n) as the tree becomes unbalanced. This is undesirable, but self-balancing trees such as the AVL tree can overcome the problem.
Have a technical question? Want to report a bug? You can ask questions and report bugs to the book authors in our official book forum here.
© 2026 Kodeco Inc.