https://github.com/mc256/eecs3301-project
https://github.com/mc256/eecs3301-project
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/mc256/eecs3301-project
- Owner: mc256
- Created: 2017-06-27T18:25:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-02-16T21:27:41.000Z (over 8 years ago)
- Last Synced: 2025-01-24T11:25:59.758Z (over 1 year ago)
- Language: C
- Size: 513 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EECS3301-Project
- parse tokens, construct a link list of tokens
- Token structure
```
struct {
int type; // defined by #define section
int * value;
token * nextToken;
} token;
```
- LR compute the result