Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 687 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 687 Bytes

First Set

Small terminal C++ program that calculates the FIRST SET from a context-free grammar (CFG)

More information about the FIRST SET

Project structure

First-set
├── CMakeLists.txt
├── include
│   ├── GrammarParser.hpp     # Parser the grammar from a file or input
│   ├── InitialSets.hpp       # Core functions
│   └── PrintFunctions.hpp    # Helper functions to print
├── README.md
├── src
│   ├── GrammarParser.cpp
│   ├── InitialSets.cpp
│   ├── main.cpp
│   └── PrintFunctions.cpp
└── test.txt