⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zhuanhuanm.cpp

📁 用c++描述的顺序存储结构的表,堆栈和队列
💻 CPP
字号:
//zhuanhuanm.cpp
#include<iostream.h>
#include<iomanip.h>
#include<stdio.h>
#include<stdlib.h>
//含有int isdigit(int c)函数的原型
#include<ctype.h>
typedef char ElemType;
#include "zhuanhuan.cpp"

void main()
{printf("\nzhuanhuanm.cpp运行结果:\n");
 printf("输入中缀表达式:");
 char p1[40],p2[40];
 gets(p1);
 zhuanhuan(p1,p2);
 printf("\n输出后缀表达式:");
 printf("%s",p2);cin.get();
}
 


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -