287mdsahil / lexical_analyzer

JU BCSEIII Compiler Design Project
GNU General Public License v3.0
3 stars 0 forks source link

Add infix-to-postfix and regex-tree #5

Closed pmcarpan closed 4 years ago

pmcarpan commented 4 years ago

Full completion of #1

Verify and suggest extra features keeping your task in mind @imraniac

Sample output of pretty-print for (a|b)*abc:

.
├── .
│   ├── .
│   │   ├── *
│   │   │   └── |
│   │   │       ├── a
│   │   │       └── b
│   │   └── a
│   └── b
└── c