当前位置: 首页>>代码示例>>Java>>正文


Java DirectedSparseGraph.getEdges方法代码示例

本文整理汇总了Java中edu.uci.ics.jung.graph.DirectedSparseGraph.getEdges方法的典型用法代码示例。如果您正苦于以下问题:Java DirectedSparseGraph.getEdges方法的具体用法?Java DirectedSparseGraph.getEdges怎么用?Java DirectedSparseGraph.getEdges使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在edu.uci.ics.jung.graph.DirectedSparseGraph的用法示例。


在下文中一共展示了DirectedSparseGraph.getEdges方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: deleteDoubleEdges

import edu.uci.ics.jung.graph.DirectedSparseGraph; //导入方法依赖的package包/类
/**
 * Erases the multiple edges of a graph
 * @param graph
 */
public static void deleteDoubleEdges(DirectedSparseGraph<Vertex,Edge> graph){
	HashSet<Edge> toDelete = new HashSet<Edge>();
	for (Edge edge1 : graph.getEdges()) {
		for (Edge edge2 : graph.getEdges()) {
			if(graph.getSource(edge1) == graph.getDest(edge2) 
					&& graph.getSource(edge2) == graph.getDest(edge1)
					&& !toDelete.contains(edge1)
					&& graph.getSource(edge1).toString().compareTo(graph.getDest(edge1).toString()) > 0){
				toDelete.add(edge1);
			}
		}
	}
	System.out.println(toDelete.size());
	for (Edge edge : toDelete) {
		System.out.println(graph.getEdges().contains(edge));
		graph.removeEdge(edge);	
	}	
}
 
开发者ID:dev-cuttlefish,项目名称:cuttlefish,代码行数:23,代码来源:Utils.java

示例2: writeEdgeList

import edu.uci.ics.jung.graph.DirectedSparseGraph; //导入方法依赖的package包/类
/**
 * Writes on the output a list of the edges of the network
 * @param graph to print
 * @param ps output stream
 */
public static void writeEdgeList(DirectedSparseGraph<Vertex,Edge> graph, PrintStream ps) {
	Hashtable<Vertex, Integer> table = new Hashtable<Vertex, Integer>();
	int count=0;
	for(Vertex v: graph.getVertices()){
		table.put(v, count);
		count++;
	}
	for(Edge e: graph.getEdges()){
		ps.println(table.get(graph.getSource(e)) + "\t"+table.get(graph.getDest(e)));
	}
	
}
 
开发者ID:dev-cuttlefish,项目名称:cuttlefish,代码行数:18,代码来源:Utils.java


注:本文中的edu.uci.ics.jung.graph.DirectedSparseGraph.getEdges方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。