kanetaiの二次記憶装置

プログラミングに関するやってみた、調べた系のものをQitaに移して、それ以外をはてブでやる運用にしようと思います。http://qiita.com/kanetai

グラフ(Graph)

リポジトリ

グラフアルゴリズムで共通で使う要素をまとめた。
本当はedge weightをintとかdoubleに切り替えられるようにしたいけど...
JavaだとDistanceクラス作る場合はゲッタ・セッタ・四則演算を作るのも使うのも煩わしいし、
ジェネリクス使ってもどうせnew T()みたいなことは正攻法ではできないのでedge weightはとりあえずintのままにしてる。
せめて演算子オーバーロードできればねぇ。

static final int INF = Integer.MAX_VALUE/2;
/** Edge of Graph */
public static class Edge implements Comparable<Edge>{
	public int s; //source node		
	public int d; //destination node
	public int w; //edge weight
	Edge(int s, int d, int w){ set(s, d, w); }
	Edge(Edge o){ set(o.s, o.d, o.w); }
	public final void set(int s, int d, int w){ this.s = s; this.d = d; this.w = w; }
	@Override public int compareTo(Edge o) { return w < o.w ? -1 : w == o.w ? 0 : 1; }
}
/**
 * Converts adjacency matrix into adjacency list.<br>
 * @param G adjacency matrix
 * @return  adjacency lists
 */
public static List<List<Edge>> convertToAdjacencyList(int[][] G){
	int n = G.length;
	List<List<Edge>> list = new ArrayList<List<Edge>>(n);
	for(int i = 0; i < n; ++i){
		list.set(i, new ArrayList<Edge>());
		for(int j = 0; j < n; ++j) if(G[i][j] < INF) list.get(i).add(new Edge(i, j, G[i][j]));
	}
	return list;
}