Superb-Man / TOC-Solver

This is a theory of computation course topics simulator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This it is a basic regular expression to DFA converter based on the coursework of theory of computation.

Features

- It takes an input as expression and parse it.
- Then from the abstract syntax tree it makes NFA and from NFA.
- it is converted into DFA using the epsilon closure propery....
- Then moore minimization algorithm is used to minimize the DFA.
- An additional string check is used also(Whether the input belongs to the expression)
- worked with OR/UNION,STAR,SEQ/AND,PLUS and literals

Screenshots

- abstract syntax tree for a+b*(c+de)*f

parse_tree

- nfa and min dfa

nfa dfa_moore_minimizedTable dfa_moore_minimized

- CYK simulation for the CFG
- S -> A B | B C
- A -> B A | a
- B -> C C | b
- C -> A B | a

cyk_table

Will try to implement

- CFG To CNF
- CFG to PDA
- CFG to LL(K)
- Left factoring and Left recursion elimination
- Computing first and follow sets

About

This is a theory of computation course topics simulator


Languages

Language:C++ 99.8%Language:Shell 0.2%