-
Notifications
You must be signed in to change notification settings - Fork 9
/
二叉树_线索_表达式求值_.cpp
179 lines (165 loc) · 3.55 KB
/
二叉树_线索_表达式求值_.cpp
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<ctype.h>
#include <malloc.h>
#define ElemType char
typedef struct TNode
{
char data;
struct TNode * lChild;//左孩子
struct TNode * rChild;//右孩子
}TNode;
/**
expr:指向表达式字符串的指针
start:为要装换的表达式字符串的起始位置
end:为要装换的表达式字符串的结束位置的后一位
root_pos:记录当前要转化的表达式生成二叉树的根节点操作符的位置
flag:记录是否是当前搜索在括号里面
multiplication_division_pos:记录当前表达式中括号外面最右端的*、/、^位置
plus_minus_pos:记录当前表达式中括号外面最右端的+、-位置
**/
void buildTree(TNode *&T,char expr[],int start,int end)
{
if(end-start==1)
{
T=(struct TNode *)malloc(sizeof(struct TNode));
T->data=expr[start];
//printf("%c->\n",T->data);
T->lChild=NULL;
T->rChild=NULL;
return;
}
int root_pos = 0;
int flag = 0;
int plus_minus_pos = 0;
int multiplication_division_pos = 0;
for(int i=start;i<end;i++)
{
if(expr[i]=='(' || expr[i]=='[')
{
flag++;
}
if(expr[i]==')' || expr[i]==']')
{
flag--;
}
if(flag==0)
{
if(expr[i]=='*' || expr[i]=='/' || expr[i]=='^')
{
multiplication_division_pos = i;
}
else if(expr[i]=='+' || expr[i]=='-')
{
plus_minus_pos=i;
}
}
}
//cout<<" "<<plus_minus_pos<<" "<<multiplication_division_pos<<endl;
if(plus_minus_pos==0 && multiplication_division_pos == 0)
{
buildTree(T,expr,start+1,end-1);
}
else
{
if(plus_minus_pos>0)
{
root_pos=plus_minus_pos;
}
else if(multiplication_division_pos>0)
{
root_pos=multiplication_division_pos;
}
T=(struct TNode *)malloc(sizeof(struct TNode));
T->data=expr[root_pos];
//printf("%c",T->data);
buildTree(T->lChild,expr,start,root_pos);
buildTree(T->rChild,expr,root_pos+1,end);
}
}
int visit(TNode *T)
{
printf("%c",T->data);
}
int PreOrderTraverse(TNode *&T)
{
if(T)
{
visit(T);
PreOrderTraverse(T->lChild);
PreOrderTraverse(T->rChild);
}
}
int InOrderTraverse(TNode *&T)
{
if(T)
{
InOrderTraverse(T->lChild);
visit(T);
InOrderTraverse(T->rChild);
}
}
int PostOrderTraverse(TNode *&T)
{
if(T)
{
PostOrderTraverse(T->lChild);
PostOrderTraverse(T->rChild);
visit(T);
}
}
int cal(struct TNode *root)
{
switch(root->data)
{
case '+':
{
return cal(root->lChild)+cal(root->rChild);
break;
}
case '-':
{
return cal(root->lChild)-cal(root->rChild);
break;
}
case '/':
{
return cal(root->lChild)/cal(root->rChild);
break;
}
case '*':
{
return cal(root->lChild)*cal(root->rChild);
break;
}
default:
{
break;
}
}
return root->data-'0';
}
int main()
{
char expr[200];
int start,end;
printf("请输入表达式:");
scanf("%s", expr);
start=0;
end=strlen(expr);
struct TNode* T;
buildTree(T,expr,start,end);
printf("\n\n");
printf("先序序列:\n");
PreOrderTraverse(T);
printf("\n\n:");
printf("中序序列:\n");
InOrderTraverse(T);
printf("\n\n");
printf("后序序列:\n");
PostOrderTraverse(T);
printf("\n\n");
printf("最终结果为:%d\n",cal(T));
//不能识别两位数,创建时逐个字符读取的;
}