Tag:compiler
All the articles with the tag "compiler".
ast构造
Posted on:October 31, 2019 | at 03:09 PM
## 抽象语法树(Abstract Syntax Tree)
上一篇简单介绍了lex和yacc
这次主要是介绍构造一个抽象语法树
比如`1+2+3`构造成
```
1
```
lex和yacc
Posted on:October 18, 2019 | at 03:15 PM
## 词法分析
lex主要是用来做词法分析用的,简单来说就是分词.
每次调用yylex都会返回一个词,lucence的标准分词器也是用lex一类的包分好词的.
Lucene的分词分好之后会