帅气芹菜

文章
4
资源
0
加入时间
2年10月18天

通过二叉树实现简易的计算机功能

@[TOC]通过二叉树实现简易的计算机功能//中缀表达式转后缀表达式#define maxsize 10#include using namespace std;struct element{int i = 0;char c;};struct earray{element* e;int index;};//1首先搭一个栈有入栈出栈功能struct stack{char...