From dffe5e060399eea7d8a6985664786cc2a5d933ff Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Thu, 11 Sep 2014 13:08:41 +0200 Subject: Squashed 'source/00_content/' content from commit 63d9db8 git-subtree-dir: source/00_content git-subtree-split: 63d9db8438ed6b32c4a85d487c07ea31bda666e4 --- pages/projects/simple_parser.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pages/projects/simple_parser.md (limited to 'pages/projects/simple_parser.md') diff --git a/pages/projects/simple_parser.md b/pages/projects/simple_parser.md new file mode 100644 index 0000000..ea4df53 --- /dev/null +++ b/pages/projects/simple_parser.md @@ -0,0 +1,18 @@ +# 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. + +This application marks the first steps in C++ I took a couple of years back and is available on [Github] or [cgit]. + +## Current features + +* Calculating terms with basic operators while respecting the priority of each operator +* Support for parentheses +* Support for alphabetic constants +* Export of the expression tree as [Graphviz] dot for visualization + +[Graphviz]: http://www.graphviz.org/ +[Github]: https://github.com/KnairdA/SimpleParser +[cgit]: http://code.kummerlaender.eu/SimpleParser/ -- cgit v1.2.3