class SplayTree
{
public:
bool contains(int value) const;
bool insert(int value);
bool remove(int value);
std::size_t size() const;
bool empty() const;
std::vector<int> values() const;
~SplayTree();
};LAV3002/Splay
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|