⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tttree.h

📁 数据结构与算法分析(C++)(版第二版)源码
💻 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 + -