aboutsummaryrefslogtreecommitdiff
path: root/pages/projects/simple_parser.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-09-11 19:25:25 +0200
committerAdrian Kummerlaender2014-09-11 19:25:25 +0200
commit508f63886336c68b4a758502b5ccb353df345e3d (patch)
treec5b8ccbc6f95777eb9851885712a168cab20f3ab /pages/projects/simple_parser.md
parent218f393c16e4bff9abdd42958ff6d05e23fa281c (diff)
downloadblog_content-508f63886336c68b4a758502b5ccb353df345e3d.tar
blog_content-508f63886336c68b4a758502b5ccb353df345e3d.tar.gz
blog_content-508f63886336c68b4a758502b5ccb353df345e3d.tar.bz2
blog_content-508f63886336c68b4a758502b5ccb353df345e3d.tar.lz
blog_content-508f63886336c68b4a758502b5ccb353df345e3d.tar.xz
blog_content-508f63886336c68b4a758502b5ccb353df345e3d.tar.zst
blog_content-508f63886336c68b4a758502b5ccb353df345e3d.zip
Expanded the content of some project pages
Diffstat (limited to 'pages/projects/simple_parser.md')
-rw-r--r--pages/projects/simple_parser.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/pages/projects/simple_parser.md b/pages/projects/simple_parser.md
index ea4df53..cf4ed3d 100644
--- a/pages/projects/simple_parser.md
+++ b/pages/projects/simple_parser.md
@@ -2,7 +2,7 @@
…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.
+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].
@@ -14,5 +14,6 @@ This application marks the first steps in C++ I took a couple of years back and
* Export of the expression tree as [Graphviz] dot for visualization
[Graphviz]: http://www.graphviz.org/
-[Github]: https://github.com/KnairdA/SimpleParser
+[Github]: https://github.com/KnairdA/SimpleParser/
[cgit]: http://code.kummerlaender.eu/SimpleParser/
+[Shunting-Yard]: http://en.wikipedia.org/wiki/Shunting-yard_algorithm