Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 487 Bytes

File metadata and controls

5 lines (5 loc) · 487 Bytes

MyCompiler

Java program designed to create NFA, DFA and context free grammars, allowing to perform lexical and syntactic analysis.

  • NFA's are created by using Thompson's construction algorithm
  • Available operations on NFA’s are: creation of a basic automata, join, concatenate, positive closure, Kleene closure, creation by RegEx, conversion to deterministic, etc.
  • Grammar operations are: LL(1), LR(0), LALR(1), LR(1). The operations show the table generation and string parsing