Skip to content
This repository has been archived by the owner on Sep 21, 2020. It is now read-only.

Latest commit

 

History

History
35 lines (27 loc) · 1.53 KB

README.md

File metadata and controls

35 lines (27 loc) · 1.53 KB

calclog

image

license-badge

Boolean calculator written in C# that implements Djikstra's Shunting Yard algorithm and RPN (reverse polish notation), see preview it on YouTube.

Feel free to star this repository if you think its useful for you 😄 !

References:

  1. "Evaluate a boolean expression represented as string", see reference;
  2. "Logical connective", see reference;
  3. "Complete Character List for UTF-8", see reference;
  4. "UTF-8 encoding table and Unicode characters", see reference;
  5. "List of logic symbols", see reference;
  6. "The Shunting Yard Algorithm", see reference;
  7. "Truth Table Generator", see reference;
  8. "C# realization of Shunting-yard algorithm", see reference;