Question: For Dr.Racket/Scheme programmers #lang eopl Write a procedure path that takes an integer n and a binary search tree bst (page 10) that contains the

For Dr.Racket/Scheme programmers #lang eopl

Write a procedure path that takes an integer n and a binary search tree bst (page 10) that contains the integer n, and returns a list of lefts and rights showing how to nd the node containing n. If n is found at the root, it returns the empty list.

> (path 17 ' (14 (7 () (12 () ()))

(26 (20 (17 () ())

())

(31 () ()))))

(right left left)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!