aboutsummaryrefslogtreecommitdiff
path: root/pages/projects/simple_parser.md
blob: e6b8f2592e013eccf96338a702bee770da7fff7c (plain)
1
2
3
4
5
# SimpleParser

…is a simple parser for resolving mathematical terms.

The term is parsed by generating a binary expression tree using the Shunting-Yard algorithm. The implementation itself does not use any external libraries and relies fully on the features provided by the C++ language and the standard library.