资源简介
用python开发的小型语法分析器,用处不大,但可以刚学习编译原理要做实验的小同学参考
代码片段和文件信息
import State
fo = open(“MC.txt“ “r“)
#token元组#
token = []
state = []
State.init()
#=============================Main======================================#
line = fo.read(1)
#读取每一句#
while line != ‘‘:
if line == ‘ ‘ or line == ‘\n‘ or line == ‘\t‘:#空白状态处理
line = fo.read(1)
elif line == ‘(‘ or line == ‘)‘ or line == ‘{‘ or line == ‘}‘ or line == ‘;‘ or line == ‘‘:#判断括号状态
token.append(line)
state.append(‘Brackets‘)
line = fo.read(1)
elif line == ‘+‘ or line == ‘-‘ or line == ‘*‘ or line == ‘/‘ or line == ‘%‘ or line == ‘=‘ or line == ‘|‘ or line == ‘&‘ or line == ‘^‘ or line == ‘!‘:
token.append(line)
state.append(‘Operators‘)
line = fo.read(1)
elif (line >= ‘a‘ and line <= ‘z‘) or (line >= ‘A‘ and line <= ‘Z‘) or line == ‘_‘:#字母状态处理
line = State.alphabetState(line fo token state)
elif (line >= ‘0‘ and line <= ‘9‘):#数字状态片理
line = State.numberState(line fo token state)
else:#错误状态
print(“ERROR“)
fo.close()#关闭文件
break
#读取每一句#
for i in range(0 len(token)):
print(token[i] + ‘\t‘ + state[i])
#=============================Main======================================#
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 398453 2014-11-20 08:14 CompilerTheory\chapter01.pptx
文件 334930 2014-11-20 08:14 CompilerTheory\chapter02.pptx
文件 1107456 2014-11-20 08:14 CompilerTheory\chapter03a.ppt
文件 1324544 2014-11-20 08:14 CompilerTheory\chapter03b.ppt
文件 1165824 2014-11-20 08:14 CompilerTheory\chapter03c.ppt
文件 1007616 2014-11-20 08:14 CompilerTheory\chapter04a.ppt
文件 48 2014-11-20 11:35 CompilerTheory\Parsing\Parsing\init.txt
文件 231 2014-11-20 11:34 CompilerTheory\Parsing\Parsing\MC.txt
文件 1292 2014-11-20 11:39 CompilerTheory\Parsing\Parsing\Parsing.py
文件 2091 2014-11-20 11:38 CompilerTheory\Parsing\Parsing\Parsing.pyproj
文件 1052 2014-11-20 11:39 CompilerTheory\Parsing\Parsing\State.py
文件 1298 2014-11-20 11:39 CompilerTheory\Parsing\Parsing\__pycache__\State.cpython-34.pyc
文件 826 2014-11-20 08:08 CompilerTheory\Parsing\Parsing.sln
..A..H. 22016 2014-11-20 11:39 CompilerTheory\Parsing\Parsing.v12.suo
文件 129173 2014-11-20 08:14 CompilerTheory\实验一词法分析程序.docx
文件 1588946 2014-10-15 22:15 CompilerTheory\词法分析器示例\示例P1.jpg
文件 1651616 2014-10-15 22:28 CompilerTheory\词法分析器示例\示例P2.jpg
文件 1506133 2014-10-15 22:17 CompilerTheory\词法分析器示例\示例P3.jpg
文件 1434227 2014-10-15 22:12 CompilerTheory\词法分析器示例\示例P4.jpg
文件 6087478 2014-11-20 08:14 CompilerTheory\词法分析器示例.rar
目录 0 2014-11-20 11:39 CompilerTheory\Parsing\Parsing\__pycache__
目录 0 2014-11-20 11:39 CompilerTheory\Parsing\Parsing
目录 0 2014-11-20 08:08 CompilerTheory\Parsing
目录 0 2014-11-20 08:15 CompilerTheory\词法分析器示例
目录 0 2014-11-20 11:39 CompilerTheory
----------- --------- ---------- ----- ----
17765250 25
相关资源
- Python编程快速上手让繁琐工作自动化
- 量化交易-python案例-简单易懂.zip
- Python3.5编程:从入门到实践.rar
- The Full Stack Python Guide to Deployments
- 流畅的Python 带目录 非扫描
- Python机器学习算法
- scrapy 安装包
- Python-2.7.13安装包
-
廖雪峰 Git ja
vasc ript Python 3 Python - python_红心大战游戏源代码_满分原创作
- Flask Web开发:基于Python的Web应用开发
- python3.7.3-官方文档指南中文
- python2.7.2 zip
- Mastering Python Networking 2nd Edition
- Learning Jupyter 5 2nd Edition
- Python数据处理 中文完整清晰版 PDF
- Python金融大数据分析.源码.py4fi-maste
- python网络爬虫电子书
- python-3.1.1.msi
- Python机器学习基础教程(完整高清
- Learning Python 5th Edition.pdf
- 流畅的python中文版高清完整版mobi
- Python项目开发实战第2版带书签超清
- deep learning with python 中文版的
- 卷积神经网络预测
- Automate the Boring Stuff with Python 原版PD
- python2.7 32位
- 精通Python自然语言处理
- Python深度学习(中文版) 超清带书签
- 人脸识别python实现源码功能丰富
评论
共有 条评论