?? algorithm.h
字號:
#pragma once
#ifndef Algorithm_H
#define Algorithm_H
#include<string>
#include<iostream>
#include<deque>
#include<map>
#include<vector>
#include "share.h"
using std::string;
using std::ostream;
using std::istream;
using std::map ;
using std::deque ;
using std::vector ;
class algorithm
{
private:
map<Prefix,vector<string> > table; //狀態表
public:
algorithm()
{
}
~algorithm()
{
}
void build( Prefix &prefix,istream &in);
void add(Prefix &prefix,const string &s);
void generate(int nwords,ostream &out);
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -