摘要: #include #include #include typedef struct node{char words[255];struct node *next;}NODE;char word[255];//判断默认字符int acceptation_logic_key(char *ch);int ... 阅读全文
posted @ 2015-10-14 12:28 20蔡舜 阅读(178) 评论(0) 推荐(0) 编辑
摘要: #include #include #include typedef struct node{ char zifuji[20]; struct node *next;}NODE;typedef struct stack{ char num[20]; int size;}STA... 阅读全文
posted @ 2015-09-21 18:40 20蔡舜 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 1.编译原理学什么?编译原理是计算机专业的一门重要专业课,旨在介绍编译程序构造的一般原理和基本方法。内容包括语言和文法、词法分析、语法分析、语法制导翻译、中间代码生成、存储管理、代码优化和目标代码生成。2.为什么学编译原理?这门课程关注的是编译器方面的产生原理和技术问题,似乎和计算机的基础领域不沾边... 阅读全文
posted @ 2015-09-09 16:50 20蔡舜 阅读(161) 评论(0) 推荐(1) 编辑