Example #1
0
        /// Simple enough that its easy
        #endregion Stack Linked List Static Cases Functions


        #region Postfix Cal functions
        private static int CalculatePostfix()
        {
            var expr    = "52+";
            var postfix = new PostfixCalculator();
            var output  = postfix.CalculatePostfix(expr);

            return(output);
        }