diff --git a/labs/trees_I/ds_set.h b/labs/trees_I/ds_set.h index fcf82cf..b5662b2 100644 --- a/labs/trees_I/ds_set.h +++ b/labs/trees_I/ds_set.h @@ -34,7 +34,6 @@ public: // comparions operators are straightforward bool operator== (const tree_iterator& rgt) { return ptr_ == rgt.ptr_; } bool operator!= (const tree_iterator& rgt) { return ptr_ != rgt.ptr_; } - // increment & decrement will be discussed in Lecture 19 and Lab 11 private: // representation @@ -93,7 +92,6 @@ private: // PRIVATE HELPER FUNCTIONS TreeNode* copy_tree(TreeNode* old_root) { - // Implemented in Lab 10 @@ -106,7 +104,7 @@ private: } - void destroy_tree(TreeNode* p) { /* Implemented in Lecture 18 */ } + void destroy_tree(TreeNode* p) { } iterator find(const T& key_value, TreeNode* p) { if (!p) return iterator(NULL); @@ -132,7 +130,7 @@ private: return std::pair(iterator(p), false); } - int erase(T const& key_value, TreeNode* &p) { /* Implemented in Lecture 19 or 20 */ } + int erase(T const& key_value, TreeNode* &p) { } void print_in_order(std::ostream& ostr, const TreeNode* p) const { if (p) {