摘要: #include<iostream> #define MaxInt 32767 #define MVNum 100 using namespace std; typedef char VerTexType;//假设顶点的数据类型为字符型 typedef int ArcType;//假设便的权值类型为 阅读全文
posted @ 2020-11-29 21:51 Steamery 阅读(120) 评论(0) 推荐(0)
摘要: #include<iostream> #define MAXQSIZE 100 using namespace std; typedef int QElemType; typedef struct { QElemType *base; int front; int rear; }SqQueue; v 阅读全文
posted @ 2020-11-17 20:42 Steamery 阅读(168) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; typedef int ElemType; typedef struct LNode { ElemType data; struct LNode *next; }LNode,*LinkList; bool InitLis 阅读全文
posted @ 2020-11-17 20:19 Steamery 阅读(67) 评论(0) 推荐(0)