摘要: #include<stdio.h>#include<stdlib.h>#include<malloc.h>#define TRUE 1#define FALSE 0#define NULL 0#define OK 1#define OVERFLOW 0#define ERROR 0typedef int QElemType;typedef int Status;typedef struct QNode{QElemType data;struct QNode *next;}QNode,*QueuePtr;typedef struct{QueuePtr fron 阅读全文
posted @ 2013-05-03 20:01 梁红伟12138 阅读(169) 评论(0) 推荐(0) 编辑