Skip to content

Instantly share code, notes, and snippets.

View Roy-Ermers's full-sized avatar

Roy Ermers Roy-Ermers

  • Altura.io
  • Noord brabant, Nederland
View GitHub Profile
@istupakov
istupakov / ShuntingYardParser.cs
Created September 29, 2016 18:39
C# realization of Shunting-yard algorithm
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace ShuntingYardParser
{
enum TokenType { Number, Variable, Function, Parenthesis, Operator, Comma, WhiteSpace };