AI Features

Introduction

In this lesson, we'll use binary trees, a tree based structure that is the basis for many advanced data structures.

We'll cover the following...

Vocabulary

A binary tree is a hierarchical data structure.

  • The topmost node is called the root.
  • Each node can have up to two children, hence the name Binary tree.
  • The
...