会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
accomplishment
博客园
首页
新随笔
联系
订阅
管理
2018年1月
C++primer Queue模板的构建
摘要: 输出: vector<int> test<1 2 3 5 >vector<string> text<my first program ! >assign test<1 2 3 >请按任意键继续. . .
阅读全文
posted @ 2018-01-03 20:41 accomplishment
阅读(162)
评论(0)
推荐(0)
2017年12月
C++primer 对容器元素重新排序
摘要: 文本内容:
阅读全文
posted @ 2017-12-18 20:03 accomplishment
阅读(282)
评论(0)
推荐(0)
C++primer 容器的综合应用:文本查询程序
摘要: 1 #include<iostream> 2 #include<string> 3 #include<fstream> 4 #include<sstream> 5 #include<vector> 6 #include<map> 7 #include<set> 8 9 using namespace
阅读全文
posted @ 2017-12-17 11:17 accomplishment
阅读(233)
评论(0)
推荐(0)
2017年11月
查找(基础)
摘要: 1 #include 2 #include 3 #define OK 1 4 #define NO 0 5 #define TRUE 1 6 #define FALSE 0 7 #define ERROR -1 8 9 10 typedef int Status; 11 12 typedef int KeyType;//关键字类型 13 type...
阅读全文
posted @ 2017-11-07 19:27 accomplishment
阅读(128)
评论(0)
推荐(0)
图的邻接矩阵表示方式——有权图的最短路径Floyd算法
摘要: 1 #include 2 #include 3 4 #define OK 1 5 #define NO 0 6 #define TRUE 1 7 #define FALSE 0 8 #define ERROR -1 9 10 #define MaxVerTexNum 100 11 #define INFINITY 65535 12 13 typ...
阅读全文
posted @ 2017-11-03 23:24 accomplishment
阅读(732)
评论(0)
推荐(0)
图的邻接矩阵表示方式——有权图的最短路径Dijkstra算法
摘要: 1 #include 2 #include 3 4 #define OK 1 5 #define NO 0 6 #define TRUE 1 7 #define FALSE 0 8 #define ERROR -1 9 10 #define MaxVerTexNum 100 11 #define INFINITY 65535 12 13 1...
阅读全文
posted @ 2017-11-03 22:29 accomplishment
阅读(617)
评论(0)
推荐(0)
图的邻接矩阵表示方式——无权图的最短路径
摘要: 输入输出示例:
阅读全文
posted @ 2017-11-03 21:06 accomplishment
阅读(1165)
评论(0)
推荐(0)
图的邻接矩阵表示方式——最小生成树算法prim&&Kruskal
摘要: 参考 http://www.cnblogs.com/kangjianwei101/p/5222014.html http://blog.csdn.net/u014488381/article/details/41447229
阅读全文
posted @ 2017-11-01 20:59 accomplishment
阅读(1770)
评论(0)
推荐(0)
2017年10月
图的遍历 浙大mooc
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 #define OK 1 5 #define NO 0 6 #define TRUE 1 7 #define FALSE 0 8 #define ERROR -1 9 10 #define MaxVerTexN
阅读全文
posted @ 2017-10-28 18:06 accomplishment
阅读(240)
评论(0)
推荐(0)
图的邻接表存储方式及遍历
摘要: 参考:http://www.cnblogs.com/kangjianwei101/p/5222014.html
阅读全文
posted @ 2017-10-27 14:15 accomplishment
阅读(1104)
评论(0)
推荐(0)
下一页
公告