2014年4月23日

C语言 中缀转后缀

摘要: 给定字符串型的算术表达式,实现中缀转后缀并运算得出结果; 1 #ifndef STACK_H_INCLUDED 2 #define STACK_H_INCLUDED 3 #include 4 #include 5 #include"stack.h" 6 #define SIZE 100 7 #d... 阅读全文

posted @ 2014-04-23 22:25 阿南要加油 阅读(406) 评论(0) 推荐(0) 编辑

C语言复习--实现栈

摘要: C 1 #include 2 #include 3 #define STACK_SIZE 100 4 typedef char TYPE; 5 typedef struct Node* pNode; 6 typedef struct Node node; 7 typedef pNode Stac... 阅读全文

posted @ 2014-04-23 14:57 阿南要加油 阅读(151) 评论(0) 推荐(0) 编辑

导航