资源简介
相关文章请访问 https://blog.csdn.net/boss_crabe/article/details/80760348
代码片段和文件信息
#include
#include
#include
using namespace std;
struct grammar {
int n p;
struct node {
int line;
string word;
node() {}
node(int _line string _word){
line = _line;
word = _word;
}
} que[100005];
node get(int p) {
if (p == n) {
return node(-1 ““);
}
else return que[p];
}
void read() {
freopen(“file_out.txt“ “r“ stdin);
int t;
string s;
while (cin >> t && cin >> s) {
que[n++] = node(t s);
// cout << t << ‘ ‘ << s << endl;
}
// cout << n << endl;
}
bool is_number(char c) {
return c >= ‘0‘ && c <= ‘9‘;
}
bool is_loweralpha(char c) {
return c >= ‘a‘ && c <= ‘z‘;
}
bool is_upperalpha(char c) {
return c >= ‘A‘ && c <= ‘Z‘;
}
bool is_alpha(char c) {
return is_loweralpha(c) || is_upperalpha(c);
}
void print(int x int y) {
// cout << “line “ << get(x).line << “
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 152 2017-12-15 14:11 语法分析\file_out.txt
文件 11158 2018-01-09 15:04 语法分析\语法分析.cpp
文件 35218 2018-06-21 14:29 语法分析\语法分析.docx
文件 1884063 2018-01-09 15:04 语法分析\语法分析.exe
目录 0 2018-06-21 14:29 语法分析\
- 上一篇:KEIL 汉字编译0xfd补丁
- 下一篇:键盘扫描及显示设计实验 微机原理
相关资源
- Deep_Learning_2016.pdf
- zw_Classification1.zip
- Griffiths-IntroductiontoElectrodynamics4thEdit
- ParaViewTutorial.pdf
- xyisv_10236804.zip
- 计算机图形学第4版高清电子书.pdf
- 《多粒度知识获取与不确定性度量》
- 华成英模电课件.zip
- 70d0cd041f738f12db575d3b46e97582.pdf
- OfficeTabEnterprise13.1.zip
- wxu998.rar
- PowerDesigner16.5汉化文件.rar
- jsgis.zip
- PinyinIME(关键代码写了注释).zip
- 锁相环设计、仿真与应用第5版中.pd
- novelOnLine.zip
- SingleSensorImagingMethodsandApplicationsforDi
- ControlSystemsEngineering7th(NormanS.Nise)
- ModernControlSystems13th(RichardC.Dorf).ra
- VectorMagic_1.15pojie.rar
- complexityoflattice__problems.pdf
- xnby_883749.zip
- TOGAF培训讲义-周金根.pdf
- OS12.2驱动,手机虚拟定位软件,Loca
- 大话系列-大话数据结构(pdf高清版)
- 梁宁产品经理思维30讲.pdf
- CHI760E辰华电化学工作站软件最新版
- SAPERPHCM葵花宝典系列之配置指南(电
- TangZhuoLin.rar
- Day3_NOI.zip
评论
共有 条评论