📄 tttree.h
字号:
// Two-three tree implementation for the Dictionary ADT
template <class Key, class Elem, class KEComp, class EEComp>
class TTTree : public Dictionary<Key, Elem, KEComp, EEComp> {
public:
TTTree();
~TTTree();
void clear();
bool insert(const Elem&);
bool remove(const Key&, Elem&);
bool removeAny(Elem&);
bool find(const Key&, Elem&) const;
int size();
void print() const;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -