`
shenyu
  • 浏览: 122636 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Graph 图-邻接矩阵法

阅读更多

用邻接矩阵法表示的双向图(改单向容易,只要修改connect,disconect方法)。

此处只是表示数据结构,没有相关算法。

其中Vertex是辅助类表示顶点,其中包含一个boolean变量isVisited表示是否遍历过。

Graph表示图,实际存储顶点,以及顶点之间的关系(用二维数组表示)

另一个实现请请参见

class Vertex {
	private Object value;
	private boolean isVisited;
	Vertex(Object value) {
		this.value = value;
	}

	void visit() { isVisited = true; }
	boolean isVisited() { return isVisited; }
}

class Gragh {
	private Vertex[] vertexs;
	private int[][] adjMat;
	private int pos = -1;

	Gragh(int size) {
		vertexs = new Vertex[size];
		adjMat = new int[size][size];
	}

	void add(Object value) {
		assert pos < vertexs.length;
		vertexs[++pos] = new Vertex(value);
	}

	void connect(int from, int to) {
		adjMat[from][to] = 1;
		adjMat[to][from] = 1;
	}

	void disConnect(int from, int to) {
		adjMat[from][to] = 0;
		adjMat[to][from] = 0;
	}
}
 

 

分享到:
评论
1 楼 song218888 2008-11-13  




dfdf dfd

[b][/b]




[color=darkred][/color]

相关推荐

Global site tag (gtag.js) - Google Analytics