waiwai4701

没有背后的一直努力,你的以为的隐忍不是隐忍,是懦弱。

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2015年1月7日

摘要: #include "stdafx.h"#include using namespace std;typedef int DataType;#define MAXSIZE 5typedef struct{ DataType *base; int front; int rear;}CircleQueue... 阅读全文
posted @ 2015-01-07 11:12 waiwai4701 阅读(128) 评论(0) 推荐(0) 编辑

摘要: #include "stdafx.h"#include using namespace std;typedef int DataType1;typedef struct qnode{ DataType1 data; struct qnode *next;//在结构体中调用结构体本身,要用qnode,... 阅读全文
posted @ 2015-01-07 11:11 waiwai4701 阅读(98) 评论(0) 推荐(0) 编辑

摘要: #include "stdafx.h"#include using namespace std;typedef int DataType;#define SIZE 100typedef struct { DataType data[SIZE]; int head,tail;}SqQueue;//初始... 阅读全文
posted @ 2015-01-07 11:10 waiwai4701 阅读(117) 评论(0) 推荐(0) 编辑

摘要: #include "stdafx.h"#include #include #include #include #include using namespace std;typedef int DataType;struct LNode{ DataType data; struct LNode *ne... 阅读全文
posted @ 2015-01-07 11:09 waiwai4701 阅读(106) 评论(0) 推荐(0) 编辑