?? 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 + -