You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Cannot calculate the postfix tokens of the given input as the term is invalid. A constant or number must be followed by an operator or a closing bracket.");
35
+
}
36
+
37
+
// A closing bracket must be followed by an operator or another closing bracket...
"Cannot calculate the postfix tokens of the given input as the term is invalid. A closing bracket must be followed by an operator or another closing bracket.");
42
+
}
43
+
}
44
+
45
+
lastToken=token;
25
46
switch(token.Type)
26
47
{
27
48
caseTokenType.Number:
@@ -33,8 +54,8 @@ public static IEnumerable<Token> ShuntingYard(List<Token> infixTokens)
0 commit comments