Skip to content

ajs424/Recursive-Descent-Parsing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Recursive-Descent-Parsing

Considering this BNF grammar:

A -> I = E | E

E -> P O P | P

O -> + | - | * | / | **

P -> I | L | UI | UL | (E)

U -> + | - | !

I -> C | CI

C -> a | b | ... | y | z

L -> D | DL

D -> 0 | 1 | ... | 8 | 9

I implemented a recursive descent parser that recognizes the strings in this language. This repository includes both a Java and a C++ implementation.

About

A Java and C++ implementation of a recursive descent parser that recognizes strings in a BNF grammar.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors