An open API service indexing awesome lists of open source software.

https://github.com/mc256/eecs3301-project


https://github.com/mc256/eecs3301-project

Last synced: about 1 year ago
JSON representation

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