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

📄 indexable.h

📁 ALGAE是一个快速创建算法演示的框架。目前支持的算法实现语言包括java和c
💻 H
字号:
#ifndef INDEXABLE_H#define INDEXABLE_H//// Indexable is an abstract class for things that have integer-addressed// components that another Visible item can point to.//class Visible;class Indexable {public:  virtual Visible* elementAt (int index) const = 0;  //pre: (none)  //  v = elementAt(index)  //post:  if index is in a valid range,  *v is the element at the   //            index'th position  //       if index is outside the valid range, v == null};#endif

⌨️ 快捷键说明

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