会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
ISGuXing
路途很艰辛,但是也很有趣。 千里之行,始于足下~
博客园
首页
新随笔
联系
订阅
管理
2018年5月23日
哈夫曼编码实现(链式实现)
摘要: 测试结果:
阅读全文
posted @ 2018-05-23 09:33 ISGuXing
阅读(910)
评论(0)
推荐(0)
编辑
DFS遍历图(链式邻接表实现)
摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 struct Node{ 7 int num; 8 Node * next; 9 }node[1000]; 10 int vis[1000]; 11 void insert_link(Node *a,int value){ ...
阅读全文
posted @ 2018-05-23 09:30 ISGuXing
阅读(411)
评论(0)
推荐(0)
编辑
公告