- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
拓扑排序(Topological sort)
拓扑排序(Topological sort)
Topological sort
------------------------------------------------------------------
Class 1: the adjacency table representation of a spanning graph
Import java.util.ArrayList;
Import java.util.List;
Import java.util.Scanner;
Public, class, GenerateMap {
The number of vertices in the graph / /
Private int size;
Public, int, getSize () {
Return size;
}
Access to information / adjacency list
Private ListListInteger map;
Public, ListListInteger, getMap () {
Return map;
}
Console input / /
Private Scanner input;
Private, void, setUp () {
Map = new, ArrayListListInteger ();
ListInteger temp;
For (int i = 0; I size; ++i) {
Temp = new, ArrayListInteger ();
Map.add (temp);
}
}
Private, void, init (), throws, Exception{
System. out.println (the following input data is separated by spaces or commas);
For (int i = 0; I size; ++i) {
System. out.format (enter the point adjacent to the vertex%d:, i+1);
String string = input.nextLine ();
DealString (string, I);
}
Input.close ();
}
Private, void, dealString (String, string, int, flag) throws Exception{
(if) (string.length = 0)
Return;
If (flag 0 size {flag ||)
Throw, new, Exception (ERROR);
}
String[] STRs = string.split (|.);
For (int i = 0; I strs.length; ++i) {
Int number = Integer.valueOf (strs[i]);
If (number 1 || number size)
Throw new Exception (Input error!);
If (number-1 = flag)
Continue;
Map.get (flag).Add (number);
}
}
/ / graph adjacency list
Public GenerateMap (int size) throws Exception{
This.size = size;
This.setUp ();
Input = new, Scanner (System.in);
This.init ();
}
Print / adjacency table information
Public, void, print () {
Int i = 1;
For (ListInteger, list:map) {
System. out.print (i++ + :);
System. out.println (list.toString ());
}
}
}
-------------------------------------------------------------
测试:
公共类测试{
public static void main(String [] args){抛出异常
generatemap地图=新generatemap(7);
print()地图;
}
}
-----------------------------------------------------------
2:拓扑排序类类
进口java.util.arrayd
您可能关注的文档
- 巧记大学英语六级单词 lesson 22(Remember six words of College English lesson 22).doc
- 左侧关联销售(Left side associated sales).doc
- 巧还房贷让你少奋斗十年zzzma(Qiao also let you struggle for less than ten years zzzma).doc
- 巧还房贷让你少奋斗十年zz(Qiao also let you struggle for less than ten years zz).doc
- 已婚女子的心声--婚前婚后领悟的事(The voice of a married woman -- a matter of understanding before marriage and marriage).doc
- 巷道开挖支护(Excavation roadway).doc
- 市2012年至2013年采暖期供热保障方案(The heating period from 2012 to 2013 the city heating supply scheme).doc
- 市场督导手册(Market supervision manual).doc
- 市场营销策划一(Marketing planning I).doc
- 市场细化,如何权衡新老客户之间的关系(Market refinement, how to balance the relationship between old and new customers).doc
- 掌握科学的记忆方法(Mastering scientific memory methods).doc
- 探秘中国古代香料制作(Quest China ancient spice production).doc
- 挖掘机维修手册精选集(Excavator repair manual).doc
- 探讨既有建筑采暖节能改(To explore the existing building energy-saving heating).doc
- 探讨电子商务新的商业模式o2o(Probe into the new business model of e-commerce o2o).doc
- 探险任务册(Exploration task book).doc
- 推导人类社会构造原理的分析过程之一(One of the analytical processes that derive the principles of human social construction).doc
- 推拿常用诊断方法之骨与关节病变的基本x线表现(The basic X-ray bone and joint disease diagnosis methods of massage).doc
- 探讨聚丙烯(pp)改性料的收缩率(The shrinkage of polypropylene (PP) modified material was studied).doc
- 推拿手法分论2 关节活动法(Manipulation of massage -- a discussion of 2 joint movement).doc
文档评论(0)