根据后缀表达式构建一个二叉树,其前序遍历就是它的前缀表达式
建树:从后缀表达式最后一位往前建
#include <string.h>
#include <stdlib.h>
#include <iostream>
typedef struct btnode
{
char data;
struct btnode *lchild;
struct btnode *rchild;
}btnode;
char A[]="abc*+def/*/";
int n=strlen(A)-1;
int judge(char a)
{
switch(a)
{
case '+':return 1;
case '-':return 1;
case '*':return 1;
case '/':return 1;
default :return 0;
}
}
btnode* fun()
{
btnode *bt=(btnode *)malloc(sizeof(btnode));
bt->data=A[n];
if(n<0) return NULL;
else if(judge(A[n])==0)
{
bt->lchild=bt->rchild=NULL;
}
else
{
n--;
bt->rchild=fun();
n--;
bt->lchild=fun();
}
return bt;
}
void pre_order(btnode *bt)
{
if(bt)
{
printf("%c",bt->data);
pre_order(bt->lchild);
pre_order(bt->rchild);
}
}
int main()
{
btnode *bt;
bt=fun();
pre_order(bt);
return 0;
}
今天的文章后缀表达式转前缀表达式分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/25392.html