摘要:
程序代码如下: 1 #include 2 #include 3 #define STACK_INIT_SIZE 100 4 #define STACKINCREMENT 10 5 #define OVERFLOW -2 6 #define OK 1 7 #define ERROR 0 8 9 ... 阅读全文
摘要:
程序代码如下: 1 #include 2 #include 3 #include 4 #define MAXSIZE 20 5 typedef int KeyType; 6 typedef char InfoType; 7 8 //结构体定义 9 typedef struc... 阅读全文