我的编程空间,编程开发者的网络收藏夹
学习永远不晚

用Python实现 词法分析器(Lexical Analyzer)

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

用Python实现 词法分析器(Lexical Analyzer)

  from __future__ import print_function

  import sys

  # following two must remain in the same order

  tk_EOI, tk_Mul, tk_Div, tk_Mod, tk_Add, tk_Sub, tk_Negate, tk_Not, tk_Lss, tk_Leq, tk_Gtr, \

  tk_Geq, tk_Eq, tk_Neq, tk_Assign, tk_And, tk_Or, tk_If, tk_Else, tk_While, tk_Print, \

  tk_Putc, tk_Lparen, tk_Rparen, tk_Lbrace, tk_Rbrace, tk_Semi, tk_Comma, tk_Ident, \

  tk_Integer, tk_String = range(31)

  all_syms = ["End_of_input", "Op_multiply", "Op_divide", "Op_mod", "Op_add", "Op_subtract",

  "Op_negate", "Op_not", "Op_less", "Op_lessequal", "Op_greater", "Op_greaterequal",

  "Op_equal", "Op_notequal", "Op_assign", "Op_and", "Op_or", "Keyword_if",

  "Keyword_else", "Keyword_while", "Keyword_print", "Keyword_putc", "LeftParen",

  "RightParen", "LeftBrace", "RightBrace", "Semicolon", "Comma", "Identifier",

  "Integer", "String"]

  # single character only symbols

  symbols = { '{': tk_Lbrace, '}': tk_Rbrace, '(': tk_Lparen, ')': tk_Rparen, '+': tk_Add, '-': tk_Sub,

  '*': tk_Mul, '%': tk_Mod, ';': tk_Semi, ',': tk_Comma }

  key_words = {'if': tk_If, 'else': tk_Else, 'print': tk_Print, 'putc': tk_Putc, 'while': tk_While}

  the_ch = " " # dummy first char - but it must be a space

  the_col = 0

  the_line = 1

  input_file = None

  #*** show error and exit

  def error(line, col, msg):

  print(line, col, msg)

  exit(1)

  #*** get the next character from the input

  def next_ch():

  global the_ch, the_col, the_line

  the_ch = input_file.read(1)

  the_col += 1

  if the_ch == '\n':

  the_line += 1

  the_col = 0

  return the_ch

  #*** 'x' - character constants

  def char_lit(err_line, err_col):

  n = ord(next_ch()) # skip opening quote

  if the_ch == '\'':

  error(err_line, err_col, "empty character constant")

  elif the_ch == '\\':

  next_ch()

  if the_ch == 'n':

  n = 10

  elif the_ch == '\\':

  n = ord('\\')

  else:

  error(err_line, err_col, "unknown escape sequence \\%c" % (the_ch))

  if next_ch() != '\'':

  error(err_line, err_col, "multi-character constant")

  next_ch()

  return tk_Integer, err_line, err_col, n

  #*** process divide or comments

  def div_or_cmt(err_line, err_col):

  if next_ch() != '*':

  return tk_Div, err_line, err_col

  # comment found

  next_ch()

  while True:

  if the_ch == '*':

  if next_ch() == '/':

  next_ch()

  return gettok()

  elif len(the_ch) == 0:

  error(err_line, err_col, "EOF in comment")

  else:

  next_ch()

  #*** "string"

  def string_lit(start, err_line, err_col):

  text = ""

  while next_ch() != start:

  if len(the_ch) == 0:

  error(err_line, err_col, "EOF while scanning string literal")

  if the_ch == '\n':

  error(err_line, err_col, "EOL while scanning string literal")

  text += the_ch

  next_ch()

  return tk_String, err_line, err_col, text

  #*** handle identifiers and integers

  def ident_or_int(err_line, err_col):

  is_number = True

  text = ""

  while the_ch.isalnum() or the_ch == '_':

  text += the_ch

  if not the_ch.isdigit():

  is_number = False

  next_ch()

  if len(text) == 0:

  error(err_line, err_col, "ident_or_int: unrecognized character: (%d) '%c'" % (ord(the_ch), the_ch))

  if text[0].isdigit():

  if not is_number:

  error(err_line, err_col, "invalid number: %s" % (text))

  n = int(text)

  return tk_Integer, err_line, err_col, n

  if text in key_words:

  return key_words[text], err_line, err_col

  return tk_Ident, err_line, err_col, text

  #*** look ahead for '>=', etc.

  def follow(expect, ifyes, ifno, err_line, err_col):

  if next_ch() == expect:

  next_ch()

  return ifyes, err_line, err_col

  if ifno == tk_EOI:郑州人流医院哪家好 http://mobile.zhongyuan120.com/

  error(err_line, err_col, "follow: unrecognized character: (%d) '%c'" % (ord(the_ch), the_ch))

  return ifno, err_line, err_col

  #*** return the next token type

  def gettok():

  while the_ch.isspace():

  next_ch()

  err_line = the_line

  err_col = the_col

  if len(the_ch) == 0: return tk_EOI, err_line, err_col

  elif the_ch == '/': return div_or_cmt(err_line, err_col)

  elif the_ch == '\'': return char_lit(err_line, err_col)

  elif the_ch == '<': return follow('=', tk_Leq, tk_Lss, err_line, err_col)

  elif the_ch == '>': return follow('=', tk_Geq, tk_Gtr, err_line, err_col)

  elif the_ch == '=': return follow('=', tk_Eq, tk_Assign, err_line, err_col)

  elif the_ch == '!': return follow('=', tk_Neq, tk_Not, err_line, err_col)

  elif the_ch == '&': return follow('&', tk_And, tk_EOI, err_line, err_col)

  elif the_ch == '|': return follow('|', tk_Or, tk_EOI, err_line, err_col)

  elif the_ch == '"': return string_lit(the_ch, err_line, err_col)

  elif the_ch in symbols:

  sym = symbols[the_ch]

  next_ch()

  return sym, err_line, err_col

  else: return ident_or_int(err_line, err_col)

  #*** main driver

  input_file = sys.stdin

  if len(sys.argv) > 1:

  try:

  input_file = open(sys.argv[1], "r", 4096)

  except IOError as e:

  error(0, 0, "Can't open %s" % sys.argv[1])

  while True:

  t = gettok()

  tok = t[0]

  line = t[1]

  col = t[2]

  print("%5d %5d %-14s" % (line, col, all_syms[tok]), end='')

  if tok == tk_Integer: print(" %5d" % (t[3]))

  elif tok == tk_Ident: print(" %s" % (t[3]))

  elif tok == tk_String: print(' "%s"' % (t[3]))

  else: print("")

  if tok == tk_EOI:

  break

  输出(测试用例三)

  5 16 Keyword_print

  5 40 Op_subtract

  6 16 Keyword_putc

  6 40 Op_less

  7 16 Keyword_if

  7 40 Op_greater

  8 16 Keyword_else

  8 40 Op_lessequal

  9 16 Keyword_while

  9 40 Op_greaterequal

  10 16 LeftBrace

  10 40 Op_equal

  11 16 RightBrace

  11 40 Op_notequal

  12 16 LeftParen

  12 40 Op_and

  13 16 RightParen

  13 40 Op_or

  14 16 Op_subtract

  14 40 Semicolon

  15 16 Op_not

  15 40 Comma

  16 16 Op_multiply

  16 40 Op_assign

  17 16 Op_divide

  17 40 Integer 42

  18 16 Op_mod

  18 40 String "String literal"

  19 16 Op_add

  19 40 Identifier variable_name

  20 26 Integer 10

  21 26 Integer 92

  22 26 Integer 32

  23 1 End_of_input

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

用Python实现 词法分析器(Lexical Analyzer)

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

用Python实现 词法分析器(Lexical Analyzer)

  from __future__ import print_function  import sys  # following two must remain in the same order  tk_EOI, tk_Mul, tk_D
2023-06-02

JavaScript如何实现简单的词法分析器

这篇文章主要介绍了JavaScript如何实现简单的词法分析器的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇JavaScript如何实现简单的词法分析器文章都会有所收获,下面我们一起来看看吧。什么是词法分析器?
2023-07-05

Python基于jieba分词实现snownlp情感分析

情感分析(sentimentanalysis)是2018年公布的计算机科学技术名词,它可以根据文本内容判断出所代表的含义是积极的还是负面的等。本文将通过jieba分词实现snownlp情感分析,感兴趣的可以了解一下
2023-01-30

利用PHP实现词法分析器与自定义语言

这篇文章主要为大家详细介绍了润滑利用PHP实现词法分析器与自定义语言,文中的示例代码讲解详细,感兴趣的小伙伴可以动手尝试一下
2022-11-13

详解JavaScript实现简单的词法分析器示例

这篇文章主要为大家介绍了详解JavaScript实现简单的词法分析器示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
2023-03-10

Python底层技术解析:如何实现分词和词性标注

Python底层技术解析:如何实现分词和词性标注,需要具体代码示例在自然语言处理(NLP)中,分词和词性标注是一项非常重要的任务。分词是将连续的文字序列切分为单个词语的过程,而词性标注则是为每个词语确定其在文本中的词性,如名词、动词、形容词
Python底层技术解析:如何实现分词和词性标注
2023-11-08

Python中文分词实现方法(安装pymmseg)

本文实例讲述了Python中文分词实现方法。分享给大家供大家参考,具体如下: 在Python这pymmseg-cpp 还是十分方便的! 环境 ubuntu10.04 , python2.65 步骤: 1 下载mmseg-cpp的源代码 ht
2022-06-04

Python分割单词和转换命名法的实现

本文主要介绍了Python分割单词和转换命名法的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2023-03-15

PHP怎么实现词法分析与自定义语言

本文小编为大家详细介绍“PHP怎么实现词法分析与自定义语言”,内容详细,步骤清晰,细节处理妥当,希望这篇“PHP怎么实现词法分析与自定义语言”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。
2023-06-26

java词法分析器DDL递归怎么应用

这篇文章主要讲解了“java词法分析器DDL递归怎么应用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“java词法分析器DDL递归怎么应用”吧!intellij plugin考虑到我们主要是
2023-07-02

Python中文分词工具之结巴分词用法实例总结【经典案例】

本文实例讲述了Python中文分词工具之结巴分词用法。分享给大家供大家参考,具体如下: 结巴分词工具的安装及基本用法,前面的文章《Python结巴中文分词工具使用过程中遇到的问题及解决方法》中已经有所描述。这里要说的内容与实际应用更贴近——
2022-06-04

Python怎么利用re模块实现简易分词

本文小编为大家详细介绍“Python怎么利用re模块实现简易分词”,内容详细,步骤清晰,细节处理妥当,希望这篇“Python怎么利用re模块实现简易分词”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。一个简单的to
2023-06-30

利用python实现数据分析

1:文件内容格式为json的数据如何解析import json,os,sys current_dir=os.path.abspath(".")filename=[file for file in os.listdir(current_dir
2022-06-04

Python实现的堆排序算法原理与用法实例分析

本文实例讲述了Python实现的堆排序算法。分享给大家供大家参考,具体如下: 堆排序(Heapsort)是指利用堆这种数据结构所设计的一种排序算法。堆是一个近似完全二叉树的结构,并同时满足堆性质:即子结点的键值或索引总是小于(或者大于)它的
2022-06-04

如何分析基于结构化平均感知机的分词器Java实现

本篇文章给大家分享的是有关如何分析基于结构化平均感知机的分词器Java实现,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。基于结构化平均感知机的分词器Java实现最近高产似母猪,
2023-06-02

Python中Class类用法实例分析

本文实例讲述了Python中Class类用法。分享给大家供大家参考,具体如下: 尽管Python在Function Programming中有着其他语言难以企及的的优势,但是我们也不要忘了Python也是一门OO语言哦。因此我们关注Pyth
2022-06-04

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录