KotlinCS 124 LogoJava

Trees and Recursion

import cs125.trees.BinaryTree;
int countLeftGreaterThanRight(BinaryTree tree) {
return 0;
}
assert countLeftGreaterThanRight(new BinaryTree<Integer>(0, 1, 2)) == 1;

Next we’ll continue practicing with trees and recursion! And what better way to do that then to do a few problems together? So let’s get started!

Count Left Greater Than Right
Count Left Greater Than Right

As a warm up, let’s do another counting problem. Given a binary tree containing Integers, let’s count the number of nodes where the value of the left child is greater than the value of the right child.

Before we start, remember the core of our approach to recursion:

// Binary Tree Count Left Greater Than Right

Tree Search
Tree Search

Next, we’ll look at how to determine if a binary tree contains a certain value. This problem introduces a new wrinkle to our usual approach to recursion!

// Binary Tree Search

Practice: Binary Tree Count Equal to Child

Created By: Geoffrey Challen
/ Version: 2020.11.0

Create a public class BinaryTreeCounter that provides a single class method named countEqualToEitherChild that accepts a single BinaryTree and counts the number of nodes in the tree where the value at that node is equal to either the value at its right child or the value at its left child. Keep in mind that not every node has a right or left child, so you'll need to check for null carefully. (Or use try-catch!) However, you can assume that all of the values in the tree are non-null.

For reference, cs125.trees.BinaryTree has the following public properties:

Algorithm Analysis
Algorithm Analysis

Next, let’s examine the performance of our recursive algorithms, and determine what O(n) category they belong in.

// Binary Tree Algorithm Analysis

Homework: BinaryTree Count Equal Children

Created By: Geoffrey Challen
/ Version: 2021.10.0

Create a public class BinaryTreeCounter that provides a single class method named countEqualChildren that accepts a single BinaryTree<?> and counts the number of nodes in the tree that have two children with equal values. Keep in mind that not every node has a right or left child, so you'll need to check for null carefully. (Or use try-catch!) However, you can assume that all the values in the tree are non-null.

For reference, cs125.trees.BinaryTree has the following public properties:

More Practice

Need more practice? Head over to the practice page.