수식 계산 | 스택(Stack) | 수식 표기법 (prefix, infix, postfix)
Algorithm 2019. 8. 28. 18:02반응형
스택
전위, 중위, 후위 표기법
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
using System;
using System.Collections.Generic;
using System.Linq;
namespace Application
{
class MainClass
{
public static void Main(string[] args)
{
Console.WriteLine(2 + 3 * 1);
string[] tokens = "2 + 3 * 1".Split(' ');
var result = Calulator.Evalute(tokens);
Console.WriteLine("result: {0}", result);
}
}
public class Calulator {
public static decimal Evalute(string[] infixTokens)
{
//중위표기를 후위표기로 변환
var postfixTokens = ConvertToPostfix(infixTokens);
//후위표기식 계산
string[] operatiors = { "+", "-", "*", "/"};
var stack = new Stack<string>();
foreach (var token in postfixTokens) {
if (operatiors.Contains(token))
{
var res = Calc(token, n1, n2);
}
else {
}
}
//스택에서 마지막 결과 Pop
return decimal.Parse(result);
}
private static string[] ConvertToPostfix(string[] infix) {
var postfix = new List<string>();
var stack = new Stack<string>();
foreach (var token in infix) {
if (token == "+" || token == "-")
{
{
}
}
else if (token == "*" || token == "/")
{
{
}
}
else {
}
}
//스택에 남은 연산자를 모두 추가
}
return postfix.ToArray();
}
private static decimal Calc(string op, decimal n1, decimal n2) {
decimal result = 0;
switch (op)
{
case "+":
result = n1 + n2;
break;
case "-":
result = n1 - n2;
break;
case "*":
result = n1 * n2;
break;
case "/":
result = n1 / n2;
break;
default:
throw new InvalidOperationException();
}
return result;
}
}
}
|
반응형
'Algorithm' 카테고리의 다른 글
LeetCode | Easy | Palindrome Number | 팰린드롬 (0) | 2019.08.29 |
---|---|
프로그래머스 | 프린터 | 큐(Queue) (0) | 2019.08.29 |
연결리스트로 스택 구현하기 (0) | 2019.08.28 |
배열로 스택 구현하기 (0) | 2019.08.28 |
프로그래머스 | 기능개발 | 큐 (Queue) (0) | 2019.08.28 |