📄 command.h
字号:
// file command.h
//created by alpha 2008.11.3
#ifndef command_H
#define command_H
#include <map>
#include <vector>
#include <string>
using namespace std;
class command
{
public:
command(string s);
bool control();
private:
map<string, int> m;
string cmd;
string arg;
void init();
void inserttest();
void deletetest();
void setup();
void randomtest();
void keyrank();
void average();
float rtest_rbtree(vector<int> &rand);
float rtest_bstree(vector<int> &rand);
void help();
void clear();
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -