128
Application of BSTs: Sets
(cont)
Concrete representation:
#include "BSTree.h" typedef struct SetRep { int nelems; Tree root; } SetRep; typedef SetRep *Set;