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

Boolean calculator written in C# that implements Djikstra's Shunting Yard algorithm and RPN (reverse polish notation).

License

Notifications You must be signed in to change notification settings

Devwarlt/calclog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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;