数据结构-实现后缀表达式转换表达式树

后缀表达式 转换成一颗表达式树,整个代码自己写的,很简单一看就懂,那个地方没看懂(你就要反思一下自己怎么学的),哈哈哈,也可以评论,有时间我会解答,仅供参考不喜勿喷,欢迎大佬指点,点个赞作为鼓励呀,谢谢
下面有程序运行过程的图片

#include<stdio.h>
#include<stdlib.h>
typedef struct TreeNode* PtrToNode;
typedef PtrToNode Tree;
typedef char ElementType;
#define MAX 10
struct TreeNode
{
 ElementType Element;
 Tree Left;
 Tree Right;
};
//制造结点
PtrToNode makeTree(PtrToNode Q,char ch)
{
 Q = malloc(sizeof(struct TreeNode));
 if (Q == NULL)
 {
  printf("申请内存失败");
 }
 //对Q进行初始化
 Q->Element = ch;
 Q->Left = NULL;
 Q->Right = NULL;
 return Q;
}
//打印二叉树
void PrintfTree(PtrToNode Q)
{
 if (Q->Left != NULL && Q->Right != NULL)
 {
  PrintfTree(Q->Left);
  PrintfTree(Q->Right);
 }
 printf("%c ", Q->Element);
}
int main()
{
 PtrToNode array[MAX];
 int j = 0;
 char ch[MAX] = { 'a' ,'b', '+', 'c', 'd', 'e', '+','*','*','\0' };
 int i = 0;
 while (ch[i] != '\0')
 {
  if (j == 0 || j == 1)
  {
   PtrToNode Q = NULL; 
   Q=makeTree(Q,ch[i++]);
   array[j++] = Q;
  }
  else
  {
   PtrToNode Q = NULL;
   Q = makeTree(Q,ch[i++]);
   Q->Right = array[--j];
   Q->Left = array[--j];
   array[j++] = Q;
  }
 }
 j--;
 //遍历整个二叉树
 printf("遍历二叉树 : ");
 PrintfTree(array[j]);
 printf("\n");
 system("pause");
 return 0;
}

运行截图:
在这里插入图片描述
程序的运行过程如下图:在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值