摘要: http://www.qyjohn.net/?p=1552此文关于【虚拟化、虚拟化管理、数据中心虚拟化、云计算、公有云与私有云、以及开放源代码】的看法 阅读全文
posted @ 2012-10-13 00:27 Big7 阅读(120) 评论(0) 推荐(0) 编辑
摘要: <不重复>List list = new ArrayList(); java.util.Random random = new java.util.Random(); while (list.size() < 100) { //假定产生100个随机数 Integer ii = new Integer(random.nextInt(20)); //随机数都在20以内 if (!list.contains(ii)) { list.add(ii); } System.out.print... 阅读全文
posted @ 2012-09-24 01:50 Big7 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: Given an adjacency-list representation of a multigraphG = (V, E), describe an O(V + E)-time algorithm tocompute the adjacency-list representation of the"equivalent" undirected graph G' = (V, E'), where E'consists of the edges in E with all the multiple edgesbetween two vertices 阅读全文
posted @ 2012-09-22 20:47 Big7 阅读(691) 评论(0) 推荐(0) 编辑