aboutsummaryrefslogtreecommitdiff
path: root/pages/projects/simple_parser.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-09-11 13:08:41 +0200
committerAdrian Kummerlaender2014-09-11 13:08:41 +0200
commitdffe5e060399eea7d8a6985664786cc2a5d933ff (patch)
treea1296a4a262b66e7c4f19ecd124f07af1c7868c5 /pages/projects/simple_parser.md
downloadblog.kummerlaender.eu-dffe5e060399eea7d8a6985664786cc2a5d933ff.tar
blog.kummerlaender.eu-dffe5e060399eea7d8a6985664786cc2a5d933ff.tar.gz
blog.kummerlaender.eu-dffe5e060399eea7d8a6985664786cc2a5d933ff.tar.bz2
blog.kummerlaender.eu-dffe5e060399eea7d8a6985664786cc2a5d933ff.tar.lz
blog.kummerlaender.eu-dffe5e060399eea7d8a6985664786cc2a5d933ff.tar.xz
blog.kummerlaender.eu-dffe5e060399eea7d8a6985664786cc2a5d933ff.tar.zst
blog.kummerlaender.eu-dffe5e060399eea7d8a6985664786cc2a5d933ff.zip
Squashed 'source/00_content/' content from commit 63d9db8
git-subtree-dir: source/00_content git-subtree-split: 63d9db8438ed6b32c4a85d487c07ea31bda666e4
Diffstat (limited to 'pages/projects/simple_parser.md')
-rw-r--r--pages/projects/simple_parser.md18
1 files changed, 18 insertions, 0 deletions
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/