摘要:
//h1.h#includetypedef char QElemType; typedef void Status;using namespace std;typedef struct QNode{QElemType data;struct QNode *next;}*QueuePtr;typedef struct{QueuePtr front;//队头指针QueuePtr rear;//队尾指针}LinkQueue;//function.h#include"h1.h" using namespace std;LinkQueue InitQueue() //构建一个空队列Q 阅读全文
posted @ 2014-03-02 14:53
琥珀玲珑
阅读(385)
评论(0)
推荐(0)
浙公网安备 33010602011771号