会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Steamery
博客园
首页
新随笔
联系
订阅
管理
2020年11月29日
邻接矩阵表示法表示图
摘要: #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)
2020年11月17日
循环队列的实现(顺序表)
摘要: #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)
公告