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

📄 buffpool.h

📁 数据结构与算法分析(C++)(版第二版)源码
💻 H
字号:
class BufferPool {
public:
  // Insert from space sz bytes begining at position pos
  //   of the buffered store
  virtual void insert(void* space, int sz, int pos) = 0;
  // Put into space sz bytes beginning at position pos
  //   of the buffered store
  virtual void getbytes(void* space, int sz, int pos) = 0;
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -