该文被密码保护。 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct GLNode //定义存储中缀表达式的结点类型 { char name[100]; char prof[100]; int type; struct { st 阅读全文
摘要:
#include #include #include #include #include #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 #define OVERFLOW -2 #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 using namespace... 阅读全文
该文被密码保护。 阅读全文
摘要:
#include#include using namespace std; template class Stack{ //自定义堆栈公式化描述 public: Stack(){Top=0;} T top(){return a[Top];} void pop(... 阅读全文