摘要: // erchashu_xiti.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include using namespace std; //////////定义树节点结构 typedef struct Tree { int key; Tree* p; Tree* left; Tree* right;... 阅读全文
posted @ 2017-03-21 23:38 lineaar 阅读(193) 评论(0) 推荐(0) 编辑
摘要: // duilie.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include using namespace std; struct QueueRecord; typedef struct QueueRecord *Queue; int IsEmpty(Queue Q); int IsFull(Queue Q); Que... 阅读全文
posted @ 2017-03-21 23:37 lineaar 阅读(174) 评论(0) 推荐(0) 编辑