Dynamic Binary Int Tree Assignment

From CSE425S Wiki
Revision as of 07:03, 9 November 2022 by Dennis.cosgrove (talk | contribs) (Created page with "=Provided= <nowiki>(struct branch (left x right) #:transparent) (define empty-tree #f)</nowiki> =Code to Implement= ==insert== ==contains== ==sum==")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Provided

(struct branch (left x right) #:transparent)

(define empty-tree #f)

Code to Implement

insert

contains

sum