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
107
108
109
110
111
112
113
114
115
116
117
118
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_STACK_SIZE 100
 
typedef char element;        // ±³Ã¼!
                            // Â÷ÈÄ¿¡ ½ºÅÃÀÌ ÇÊ¿äÇϸ頿©±â¸¸ º¹»çÇÏ¿© ºÙÀδÙ. 
                            // ===== ½ºÅàÄÚµåÀÇ ½ÃÀÛ ===== 
#define MAX_STACK_SIZE 100
 
 
typedef struct {
    element data[MAX_STACK_SIZE];
    int top;
} StackType;
 
// ½ºÅàÃʱâÈ­ ÇÔ¼ö
void init_stack(StackType *s)
{
    s->top = -1;
}
 
// °ø¹é »óÅ °ËÃâ ÇÔ¼ö
int is_empty(StackType *s)
{
    return (s->top == -1);
}
// Æ÷È­ »óÅ °ËÃâ ÇÔ¼ö
int is_full(StackType *s)
{
    return (s->top == (MAX_STACK_SIZE - 1));
}
// »ðÀÔÇÔ¼ö
void push(StackType *s, element item)
{
    if (is_full(s)) {
        fprintf(stderr, "½ºÅàÆ÷È­ ¿¡·¯\n");
        return;
    }
    else s->data[++(s->top)] = item;
}
// »èÁ¦ÇÔ¼ö
element pop(StackType *s)
{
    if (is_empty(s)) {
        fprintf(stderr, "½ºÅà°ø¹é ¿¡·¯\n");
        exit(1);
    }
    else return s->data[(s->top)--];
}
// ÇÇÅ©ÇÔ¼ö
element peek(StackType *s)
{
    if (is_empty(s)) {
        fprintf(stderr, "½ºÅà°ø¹é ¿¡·¯\n");
        exit(1);
    }
    else return s->data[s->top];
}
// ===== ½ºÅàÄÚµåÀÇ ³¡ ===== 
 
// ¿¬»êÀÚÀÇ ¿ì¼±¼øÀ§¸¦ ¹ÝȯÇÑ´Ù.
int prec(char op)
{
    switch (op) {
    case '('case ')'return 0;
    case '+'case '-'return 1;
    case '*'case '/'return 2;
    }
    return -1;
}
// ÁßÀ§ Ç¥±â ¼ö½Ä -> ÈÄÀ§ Ç¥±â ¼ö½Ä
void infix_to_postfix(char exp[])
{
    int i = 0;
    char ch, top_op;
    int len = strlen(exp);
    StackType s;
 
    init_stack(&s);                    // ½ºÅàÃʱâÈ­ 
    for (i = 0; i<len; i++) {
        ch = exp[i];
        switch (ch) {
        case '+'case '-'case '*'case '/'// ¿¬»êÀÚ
                                            // ½ºÅÿ¡ Àִ ¿¬»êÀÚÀÇ ¿ì¼±¼øÀ§°¡ ´õ Å©°Å³ª °°À¸¸é Ãâ·Â
            while (!is_empty(&s) && (prec(ch) <= prec(peek(&s))))
                printf("%c"pop(&s));
            push(&s, ch);
            break;
        case '(':    // ¿ÞÂÊ °ýÈ£
            push(&s, ch);
            break;
        case ')':    // ¿À¸¥ÂÊ °ýÈ£
            top_op = pop(&s);
            // ¿ÞÂÊ °ýÈ£¸¦ ¸¸³¯¶§±îÁö Ãâ·Â
            while (top_op != '(') {
                printf("%c", top_op);
                top_op = pop(&s);
            }
            break;
        default:        // ÇÇ¿¬»êÀÚ
            printf("%c", ch);
            break;
        }
    }
    while (!is_empty(&s))    // ½ºÅÿ¡ ÀúÀåµÈ ¿¬»êÀÚµé Ãâ·Â
        printf("%c"pop(&s));
}
// 
int main(void)
{
    char *= "(2+3)*4+9";
    printf("ÁßÀ§Ç¥½Ã¼ö½Ä %s \n", s);
    printf("ÈÄÀ§Ç¥½Ã¼ö½Ä ");
    infix_to_postfix(s);
    printf("\n");
    return 0;
}
cs