Add CMakeLists for all datastructs

+ Reorder, refactor comments
This commit is contained in:
2020-07-11 20:55:15 -04:00
parent be91573abc
commit a692a0f631
22 changed files with 168 additions and 50 deletions

View File

@@ -24,7 +24,7 @@ class BinarySearchTree {
const int & findMin() const;
const int & findMax() const;
bool contains(const int &x) const;
bool isEmpty();
bool isEmpty() const;
void insert(const int &x);
void remove(const int &x);
void makeEmpty();