资源简介
我是2017级的,老师是李宏芒老师,希娃对学弟学妹们的学习有所帮助!
代码片段和文件信息
#include
#include
#include
#include
using namespace std;
class Table
{
private:
string str[40];
int strcount;
string name;
public:
Table();
~Table();
void setname(string strTemp);
string getname();
void update(string strTemp);
void init(string filename);
int search(string strTemp); };
Table::Table()
{
for (int i = 0; i<40; i++)
str[i] = ““;
strcount = 0;
name = ““;
}
Table::~Table()
{
}
void Table::setname(string strTemp) {
name = strTemp;
}
string Table::getname()
{
return name;
}
void Table::update(string strTemp) {
str[++strcount] = strTemp; }
void Table::init(string filename) {
string strin;
ifstream infiles(filename);
if (!infiles)
cout << “打开“<
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5462 2019-05-23 22:48 lexicalAnalyzer.cpp
文件 8946 2019-06-15 09:18 LL(1).cpp
文件 11156 2018-06-20 22:31 LR(1).cpp
文件 142254 2019-06-28 00:14 实验报告.docx
----------- --------- ---------- ----- ----
167818 4
评论
共有 条评论