Recall that a list is defined recursively as a finite set of cases:
In Scheme and Racket, you build lists with null
(empty list) and
cons
(add a value to the front of a list).
You deconstruct lists with null?
(check for empty list), car
(grab the first element), and cdr
(grab everything but the first element).
Every other list operation we use can be built from those basics.
The structure of a list organizes its data in a sequential fashion. That is there is an ordering imposed by the list structure. For example, consider the following list of strings:
(define favorite-fruit '("pear" "apple" "peach" "grape" "olive"))
The recursive definition of a list implies that we will walk through the elements of the list in left-to-right order. For example, the following recursive function returns the first occurrence of a string that starts with the letter ‘p’:
(define find-first-p
(lambda (l)
(match l
['() (error "(find-first-p) not found!")]
[(cons head tail)
(if (string-prefix? head "p")
head
(find-first-p tail))])))
> (find-first-p favorite-fruit)
"pear"
Note that when used on our sample list, the function returns "pear"
rather than "peach"
because it encounters "pear"
first.
We can use the sequential nature of lists to encode orderings, something that we will revisit at the end of the course when we talk about sorting algorithms. For now, we can observe that if assume that the list contains our favorite fruits in decreasing order of favor, then we can easily define functions that retrieve our most favorite and least favorite fruits from the list:
(define most-favorite car)
(define least-favorite last)
> (most-favorite favorite-fruit)
"pear"
> (least-favorite favorite-fruit)
"olive"
(Note that most-favorite
and least-favorite
are directly defined to be the functions car
and last
, respectively, so they are themselves functions.
In this sense, we can think of our definitions of most-favorite
and least-favorite
to be aliases or alternative names for car
and last
.)
In short, we can take advantage of the structure of a data type, here a list, to make defining operations easier as well as more efficient. This is the motivation behind the study of data structures which allow us to organize our data in various ways. Lists are our first example of such a data structure, and perhaps, the most fundamental in all of computing.
Lists work particular well when our data has a natural sequential interpretation or ordering to it. However, not all data behaves in this manner. For example, consider a management hierarchy that describes the groups that the managers of a company oversee:
The manner in which employees report to each other seems sequential in nature, but breaks down if we try to put them all into a list. We might try to do so with the board at the head of the list—since they’re the “top” of the management structure—and then work our way downwards.
'("Board"
"CEO"
"Head of Engineering"
"Head of Marketing"
"Head of Legal"
"Software Developer"
"Tester"
"Data Analyst"
"Lawyer")
The sequential nature of the list implies that the "CEO"
reports to the "Board"
which is correct.
However, the "Head of Marketing"
does not report to the "Head of Engineering"
—they are actual equals in the management hierarchy!
Likewise, a "Software Developer"
doesn’t manage "Lawyers"
; they do not have a direct relationship in terms of management.
As the example above suggests, management hierarchies are not sequential in nature.
They are, as suggested by their name, hierarchical.
We can think of a hierarchy as imposing a parent-child structure on data.
In this view, every child has one parent, but parents can have multiple children.
In the above example, an example of a parent would be the "CEO"
and its children would be the "Head of Engineering"
, "Head of Marketing"
and "Head of Legal"
.
Of course, we could use nested lists (much like SXML) to better represent the hierarchy. Each list contains the role (a string) and then any direct reports. If a direct report has its own reports, we represent it as a list. If not, it’s just the string.
'("Board"
("CEO"
("Head of Engineering"
"Software Developer"
"Tester"
"Data Analyst")
"Head of Marketing"
("Head of Legal"
"Lawyer")))
If we added a “Lead Tester” role, we might rewrite this as
'("Board"
("CEO"
("Head of Engineering"
"Software Developer"
("Lead Tester"
"Tester")
"Data Analyst")
"Head of Marketing"
("Head of Legal"
"Lawyer")))
These nested lists appear useful. But perhaps we should formalize what we’re doing. In addition, we know that we have some responsibility to separate what we want to do with the structure from how we implement it. Perhaps nested lists aren’t the way to go.
In computer programs, we represent hierarchies using a data structure called a tree. We might represent the management hierarchy above with a tree pictorially as follows:
In the picture, a line between two names corresponds to a parent-child relationship where the parent is higher in the diagram than its child. We call each element of a tree a node of the tree. We also traditionally use tree terminology to describe the different parts of the structure:
"Board"
is the root of the tree.
It is the piece of data with no parent."Software Developer"
, "Tester"
, "Data Analyst"
, and "Lawyer"
are all considered leaves of the tree.
Each of them have no children.You might note that the "Board"
is at the top of tree whereas the roots of the trees are found on the ground.
That is correct!
It turns out that the way computer scientists think of trees are upside-down:
Recall that the key insight behind performing recursive operations over lists was decomposing its structure in a way that we could identify a smaller sub-list inside of a larger list.
We can do the same thing for trees.
In our above example, the overall tree’s root is "Board"
, but note that this overall tree contains a smaller sub-tree: the sub-tree’s root is "CEO"
!
Furthermore, "CEO"
contains 3 subtrees with each group head as roots.
With this in mind, we can define a tree recursively as follows. A tree is either:
In our example above, the maximum number of children any one of the nodes has is three: the "CEO"
has three children.
However, for the purposes of our first exploration into trees, we’ll first look at trees that have at most two children, the so-called binary trees.
When we work with binary trees, we refer to the first child as the “left child” or the “left subtree” and the second child as the “right child” or the right subtree.
How might we represent a tree using the Racket programming constructs we’ve seen so far?
Note that the only difference between a list and a tree is that a list can only have one sublist whereas a binary tree can have up to two subtrees.
This implies we can use all of our list constructs—null
and cons
for construction and car
and cdr
to decomposition.
To represent multiple subtrees, we can use the pair construct we learned about previously: the “tail” of a tree will be a pair of subtrees instead of a single subtree!
Putting all of this together, we can represent a tree using lists as follows:
null
.(v l r)
: v
, the value at the node, l
, the left subtree, and r
, the right subtree.Note that some perfer to represent the node as (cons v children)
or (cons v (cons l r))
, which saves a little space but at the cost of readability.
What do we do if a node has only one child? We use null
for the first child.
What do we do if a node has no children? (That is, if it’s a leaf?) We use null
for both children.
For example, if we restrict our management hierarchy example to just its engineering and legal branches, we can represent this structure in Racket as follows:
(define management-tree
(list "Board"
null
(list "CEO"
(list "Head of Engineering"
(list "Software Developer"
null
null)
(list "Tester"
null
null))
(list "Head of Legal"
null
(list "Lawyer"
null
null)))))
While we’ve structured the tree nicely, DrRacket is not so clear in printing it out.
> management-tree
'("Board"
()
("CEO"
("Head of Engineering" ("Software Developer" () ()) ("Tester" () ()))
("Head of Legal" () ("Lawyer" () ()))))
Note that each node of the tree has the following skeleton:
(list <value> <subtree> <subtree>)
We always have three elements, even though there are sometimes one or zero subtrees. This keeps the structure of the tree uniform so we can operate it in the say way irrespective of the number of subtrees at each node.
Unfortunately, reading and writing tree definitions by hand is tedious and error prone. We should, therefore, write helpers to give better names to these definitions. Throughout, we recommend that you sketch out the design of each function from its description, if not outright implement it yourself. You can click on the buttons to look at the code we’ve written, but we’d prefer you sketch your designs first.
First, let’s write a predicate that tests whether a value is a binary tree. This predicate is a direct translation of the recursive definition of a tree into code. We can use the list and pair predicates from the standard library to directly capture our implementation strategy of encoding a tree as a list of three items, the first of which is a value and the remaining two of which are trees.
;;; (binary-tree? t) -> boolean?
;;; t : any
;;; Returns true iff t is a binary tree.
(define binary-tree?
(let ([three-element-list?
(lambda (val)
(and (pair? val)
(pair? (cdr val))
(pair? (cddr val))
(null? (cdddr val))))])
(lambda (t)
(or (empty-tree? t)
(and (three-element-list? t)
(binary-tree? (cadr t))
(binary-tree? (caddr t)))))))
Next, let’s write some definitions to capture our notion of an empty tree, the base case of our recursive definition.
We defined an empty tree to simply be null
.
So it is tempting to use null
and null?
as our empty tree value and test for whether we have an empty tree.
However, even though a tree is really a list behind the scenes, we want to avoid thinking about these implementation details when writing tree code.
Therefore, we’ll define empty-tree
to be an alias for a procedure that creates null
and empty-tree?
as null?
which hides the fact that we implement trees as lists.
;;; (empty-tree) : tree?
;;; Create the empty binary tree.
(define empty-tree
(lambda ()
null))
;;; (empty-tree? t) -> boolean?
;;; t : value
;;; Returns true iff is t is an empty binary tree.
(define empty-tree? null?)
Currently, we use null
for empty trees.
Suppose we wanted to use a special value, such as 'empty
or 'O
or '_
or even (string->symbol "\u25EC")
for our empty trees.
If we rely on empty-tree
and empty-tree?
in building our trees, we can easily make that change.
Consider how the definitions empty-tree
and empty-tree?
definitions above might change if we wanted to use 'O
to represent the empty binary tree.
;;; (empty-tree) -> tree?
;;; Create the empty binary tree.
(define empty-tree
(lambda ()
'O))
;;; (empty-tree? val) -> boolean?
;;; val : value?
;;; Returns true iff is t is an empty binary tree.
(define empty-tree?
(lambda (val)
(eq? val (empty-tree))))
Now, we’ll write functions to create non-empty trees.
(binary-tree value left right)
creates a non-empty tree with the specified value
and left
and right
sub-trees.
Note that if a tree does not have either a left or right subtree, we can pass in the empty-tree
for that respective argument.
In addition to tree
, we’ll also define a short-hand for the case where the tree has a value but no children, leaf
.
;;; (binary-tree value left right) -> tree?
;;; value : any
;;; left : tree?
;;; right : tree?
;;; Returns a non-empty tree with value at the root
;;; and the given left and right subtrees.
(define binary-tree list)
;;; (leaf value) -> tree?
;;; value : any
;;; Returns a non-empty tree with no children (i.e., a leaf)
;;; with value at the root.
(define leaf
(section binary-tree <> (empty-tree) (empty-tree)))
Now that we’ve added a bit of abstraction to our world, we should revisit the business hierarchy example.
You may recall from the code above that we explicitly used list
and null
.
We’re now switching to binary-tree
and empty-tree
, respectively.
(define management-tree
(binary-tree "Board"
(empty-tree)
(binary-tree "CEO"
(binary-tree "Head of Engineering"
(binary-tree "Software Developer"
(empty-tree)
(empty-tree))
(binary-tree "Tester"
(empty-tree)
(empty-tree)))
(binary-tree "Head of Legal"
(empty-tree)
(binary-tree "Lawyer"
(empty-tree)
(empty-tree))))))
When given a non-empty tree, we would like to grab the individual components of that tree. There are three such components:
binary-tree-top
of this tree, i.e. its root.binary-tree-left
of this tree.binary-tree-right
of this tree.Keeping in mind the non-empty tree is really a pair of a value and a pair of subtrees, how would we define these operations
(binary-tree-top t)
(binary-tree-left t)
(binary-tree-right t)
in terms of our pair projection functions car
and cdr
?
;;; (binary-tree-top t) -> any
;;; t : tree?, (not (empty-tree? t))
;;; Returns the value at the root of this tree.
(define binary-tree-top car)
;;; (binary-tree-left t) -> any
;;; t : tree?, (not (empty-tree? t))
;;; Returns the left child of this tree.
(define binary-tree-left cadr)
;;; (binary-tree-right t) -> any
;;; t : tree?, (not (empty-tree? t))
;;; Returns the right child of this tree.
(define binary-tree-right caddr)
For example, we can use these tree projection functions to get at arbitrary parts of the tree:
> (binary-tree-top (binary-tree-right management-tree))
"CEO"
> (binary-tree-top
(binary-tree-left
(binary-tree-right
management-tree)))
"Head of Engineering"
You may note that when we regularly use lists, we start using procedures with short names, like caddr
.
Might we do the same for binary trees?
Certainly. We’re designing the represention of binary trees and the associated procedures, we can do whatever we want.
Let’s start with shorthands for the three main procedures.
(All of these start with bt
for binary-tree
.)
(define bt/t binary-tree-top)
(define bt/l binary-tree-left)
(define bt/r binary-tree-right)
Think about how you might do a few more, such as the top of the left subtree, the top of the right subtree, or even the top of the left subtree of the right subtree, as in the example above.
> (bt/tlr management-tree)
"Head of Engineering"
(define bt/tl (o bt/t bt/l))
(define bt/ll (o bt/l bt/l))
(define bt/rl (o bt/r bt/l))
(define bt/tr (o bt/t bt/r))
(define bt/lr (o bt/l bt/r))
(define bt/rr (o bt/r bt/r))
(define bt/tll (o bt/tl bt/l)) ; Or with three, e.g., (o bt/t bt/l bt/l)
(define bt/lll (o bt/ll bt/l))
(define bt/rll (o bt/rl bt/l))
(define bt/trl (o bt/tr bt/l))
(define bt/lrl (o bt/lr bt/l))
(define bt/rrl (o bt/rr bt/l))
(define bt/tlr (o bt/tl bt/r))
(define bt/llr (o bt/ll bt/r))
(define bt/rlr (o bt/rl bt/r))
(define bt/trr (o bt/tr bt/r))
(define bt/lrr (o bt/lr bt/r))
(define bt/rrr (o bt/rr bt/r))
We can write a more elegant definition of our management tree using our tree creation functions:
(define management-tree
(binary-tree
"Board"
(empty-tree)
(binary-tree
"CEO"
(binary-tree
"Head of Engineering"
(leaf "Software Developer")
(leaf "Tester"))
(binary-tree
"Head of Legal"
(empty-tree)
(leaf "Lawyer")))))
Unfortunately our output is similarly unreadable.
'("Board"
()
("CEO"
("Head of Engineering" ("Software Developer" () ()) ("Tester" () ()))
("Head of Legal" () ("Lawyer" () ()))))
What if we use an alternate form of empty trees? It eliminates a few parentheses but otherwise it remains somewhat hard to read.
'("Board"
◬
("CEO"
("Head of Engineering" ("Software Developer" ◬ ◬) ("Tester" ◬ ◬))
("Head of Legal" ◬ ("Lawyer" ◬ ◬))))
Rather than relying on Racket’s default output, let’s write a function, (display-binary-tree t)
, which displays the tree in a more digestible format.
This function is inherently recursive:
We can translate this design directly into a recursive function.
(define display-binary-tree
(lambda (tree)
(when (not (empty-tree? tree))
(displayln (bt/t tree))
(display-binary-tree (bt/l tree))
(display-binary-tree (bt/r tree)))))
However, we encounter a problem immediately: all the values are printed, one-per line, in a list!
> (display-binary-tree management-tree)
Board
CEO
Head of Engineering
Software Developer
Tester
Head of Legal
Lawyer
We need a way of visually distinguishing the different parent-child relations in this structure. One way to do this is to not print a linear list but a nested list using bullets. For example, this collection of bullets:
This approach better represents the hierarchy visually. For example, it is clear that “Software Developer” is managed by the “Head of Engineering” and not the “CEO”.
How we implement this is a bit tricky!
In addition to t
, we need to introduce an additional parameter to our display function that remembers the current level of indentation we are at.
This level goes up by 1 each time we recursively explore a child of the tree.
We then use this value to print out an appropriate out of spaces per level.
We’ll explore recursive tree programming more in the next reading. For now, you can try designing and implementing this function, but don’t worry if it isn’t entirely clear how to proceed. We will discuss how to tackle recursive tree programming in the next reading!
;;; (display-binary-tree t) -> void?
;;; t : tree?
;;; Prints tree t to the console in a well-formatted manner.
(define display-binary-tree
(lambda (t)
(let* (; The different levels of bullets
[bullets (vector "* " "+ " "- " ". ")]
; The index of the last bullet
[last-bullet (- (vector-length bullets) 1)]
; Choose the appropriate bullet for a level.
[bullet
(lambda (level)
(vector-ref bullets (min level last-bullet)))])
(letrec (; Display a binary tree at the appropriate indentation
[helper
(lambda (t indent)
(when (not (empty-tree? t))
(display (make-string (* indent 2) #\space))
(display (bullet indent))
(display (bt/t t))
(newline)
(helper (bt/l t) (+ indent 1))
(helper (btr t) (+ indent 1))))])
(helper t 0)))))
Finally, let’s see how display-binary-tree
works on our management-tree
example:
> (display-binary-tree management-tree)
* Board
+ CEO
- Head of Engineering
. Software Developer
. Tester
- Head of Legal
. Lawyer
Much nicer!
All of these definitions for manipulating binary trees can be found in the csc151/binary-trees-from-lists
module. You may need to update your copy of the csc151
package to get the latest version of that module.
You can also find the code for trees built from listsat https://github.com/grinnell-cs/csc151/blob/main/binary-trees-from-lists.rkt and https://github.com/grinnell-cs/csc151/blob/main/includes/binary-trees-common.inc.
In this reading, we’ve introduced the recursive definition of a binary tree as well as associated functions for creating, manipulating, and displaying binary trees.
These functions are all included in the csc151
package, so moving forward, you don’t need to re-implement them yourselves.
However, you should study these implementations because they are excellent examples of advanced applications of lists and pairs!
a. Come up with another example of a hierarchical structure that we could represent using trees. Describe the parent-child relationships in this example.
b. Use binary-tree
and empty-tree
to give a concrete example of your structure in Racket.
Make sure your example involves a few levels so that you get practice writing our tree values. (You don’t have to write working code; just practice doing it.)