AI Features

Implementation Tips and Tricks

Learn two useful tricks for implementing functions on binary search trees.

Introduction

The course’s goal is to learn how to write pointer-intensive code. Therefore, after understanding binary search trees at a conceptual level, you’ll have to implement the functions in C using pointers and memory allocations. After that, inside the project, you’ll use the newly implemented structure to solve some common real-life problems.

The lessons in this chapter will be in pairs:

  • A pseudocode lesson
...