E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Jungle
POJ-1251-
Jungle
Roads-最小生成树-Kruskal算法
题意给定一个图,求其最小生成树。解决参考《算法导论》里面Kruskal算法的讲解,使用“并查集”这种数据结构,去生成最小生成树。心得这道题太爽了,一次就AC了。原因是由于之前在解题时写过并查集,现在直接套用却可,省了不少功夫。关于并查集,还可参考“POJ1611TheSuspects解题报告”。代码#include#includeusingnamespacestd;constintMAX_VIL_
lihao21
·
2011-03-15 16:00
数据结构
算法
struct
存储
hdu1301
Jungle
Roads(Prime算法求最小生成树)
JungleRoadsTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):1555 AcceptedSubmission(s):1129ProblemDescriptionTheHeadElderofthetropicalislandofLagrishanh
tonghu2010
·
2011-03-05 21:00
acm pku 1251
Jungle
Roads的算法分析与实现
JungleRoadsDescriptionTheHeadElderofthetropicalislandofLagrishanhasaproblem.Aburstofforeignaidmoneywasspentonextraroadsbetweenvillagessomeyearsago.Butthejungleovertakesroadsrelentlessly,sothelargeroad
uestcshe
·
2010-11-26 23:00
算法
input
NetWork
each
iostream
output
zoj 1406
Jungle
Roads(Prim || Kruskal)
很简单的最小生成树类型,直接求连一起的最小路程。 Prim算法和DIJ很类似啊,就变了一步。。。 KRU让我纠结了好长时间,不过还好明白了,PRE数组中存的是与i同一集合的下标。。。 //2015.9.16 复习Prim,被以前的代码丑哭了,更新一下Prim#include #include #include #include #include #include #include #includ
zxy_snow
·
2010-09-09 12:00
PKU 1251
Jungle
Roads/PKU 1258 Agri-Net
PKU1251JungleRoads/PKU1258Agri-Net问题:http://acm.pku.edu.cn/JudgeOnline/problem?id=1251http://acm.pku.edu.cn/JudgeOnline/problem?id=1258思路:最简单典型的最小生成树,PRIM算法参考算法导论代码(pku1251): 1 /* MST problem */ 2 #in
A Za, A Za, Fighting...
·
2010-09-05 00:00
ZOJ 1406
Jungle
Roads (kruskal)
史上最水最小生成树,不解释,不注释。 #includeusingnamespacestd;intu[500],v[500],w[500];intr[500],p[500];;inta,b,counter,n;intcases,i,j;charc[5];intcmp(constinti,constintj){returnw[i]>n&&n){counter=0;for(i=1;i>c;a=c[0]-
dangwenliang
·
2010-08-28 00:00
POJ 1251-
Jungle
Roads 最小生成树Kruskal
题目来源:http://acm.pku.edu.cn/JudgeOnline/problem?id=1251 解题报告: 典型的最小生成树问题,我这里用了Kruskal算法实现 #include#includeusingnamespacestd;structedge{intweight;intu;intv;};edgeE[360];intrank[26];//用于并查集intparent[26];
kindlucy
·
2010-08-25 00:00
Integer
less
input
NetWork
each
output
C++测试框架的选择
ExploringtheC++UnitTestingFrameworkJungle”(http://gamesfromwithin.com/exploring-the-c-unit-testing-framework-
jungle
金庆的专栏
·
2010-04-13 10:00
C++测试框架的选择
ExploringtheC++UnitTestingFrameworkJungle”(http://gamesfromwithin.com/exploring-the-c-unit-testing-framework-
jungle
jq0123
·
2010-04-13 10:00
C++
框架
测试
单元测试
Google
makefile
2010年博客计划
这个博客有几个栏目,分别是Java,Linux,Internet,
Jungle
,Software Development,Life.而今年就打算针对这几个栏目做建设,基本上按照一天一篇原
saharabear
·
2010-02-15 09:00
linux
python
互联网
wicket
GAE
The Cairns
jungle
adventure
TravelLocation:Oceania,Australia,Queensland,CairnsSorryaboutyesterdaysmardypostaboutCairns-I’djustgottenhorriblyscummysimplywalkingtothenearestshoptogetabitetoeatandtheexperienceputmeinaprettybad
hamo2008
·
2009-12-14 06:00
AIR
HDU1301
Jungle
Roads(克鲁斯卡尔算法版)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1301通过对数组构造一个静态链表,将在同一个连通分量中的顶点链接起来。对按边权值从大到小排序后的边集合逐条进行判断,若边的起点和终点分别在不同的连通分量链表中(这通过获取其所在链表的表尾元素是否是同一个来进行判定),则此边加入最小生成树的边集合中,并将边的终点加入到边的起点所在的静态链表中。最终所有结点
phinecos
·
2009-09-13 23:00
职场
ACM
休闲
HDU1301
Jungle
Roads(克鲁斯卡尔算法版)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1301通过对数组构造一个静态链表,将在同一个连通分量中的顶点链接起来。对按边权值从大到小排序后的边集合逐条进行判断,若边的起点和终点分别在不同的连通分量链表中(这通过获取其所在链表的表尾元素是否是同一个来进行判定),则此边加入最小生成树的边集合中,并将边的终点加入到边的起点所在的静态链表中。最终所有结点
phinecos
·
2009-09-13 23:00
职场
ACM
休闲
1406
Jungle
Roads(kruskal, 并查集)
JungleRoadsTimeLimit:1Second MemoryLimit:32768KBTheHeadElderofthetropicalislandofLagrishanhasaproblem.Aburstofforeignaidmoneywasspentonextraroadsbetweenvillagessomeyearsago.Butthejungleovertakesroa
lovelyloulou
·
2009-06-16 12:00
hdu1301_
Jungle
Roads
hdu1301_JungleRoads 这是我做的第一个最小生成树的题目。算法思想就是从任意一个点出发,标记为已找到的。然后找到所有与已找到的点相连的边中,权值最小的边。把边的另一个顶点标记为已找到的。然后更新所有与这个刚找到的顶点相邻的顶点的信息。重复这个步骤,直到找到了n-1个顶点。那就组成了一棵最小生成树,就是题目结束了。#include #define DEBUG 1const
sunkehappy
·
2009-05-05 00:00
1251
Jungle
Roads
JungleRoadsTimeLimit:1000MS MemoryLimit:10000KTotalSubmissions:1365 Accepted:707Description InputTheinputconsistsofoneto100datasets,followedbyafinallinecontainingonly0.Eachdatasetstartswithalinecontai
xcl119xcl
·
2007-10-15 08:00
tree
Integer
input
NetWork
each
output
使用 GNU autotools 改造一个软件项目
使用 GNUautotools改造一个软件项目及永刚
jungle
@soforge.com2006年3月24日 版本:0.3本文不是一篇规范的教程,而是用一个软件项目作为例子,演示使用 GNUautotools
zhbaoq
·
2006-05-22 22:00
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他