欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java编程实现基于图的深度优先搜索和广度优先搜索完整代码

程序员文章站 2024-02-23 21:18:46
为了解15puzzle问题,了解了一下深度优先搜索和广度优先搜索。先来讨论一下深度优先搜索(dfs),深度优先的目的就是优先搜索距离起始顶点最远的那些路径,而广度优先搜索则...

为了解15puzzle问题,了解了一下深度优先搜索和广度优先搜索。先来讨论一下深度优先搜索(dfs),深度优先的目的就是优先搜索距离起始顶点最远的那些路径,而广度优先搜索则是先搜索距离起始顶点最近的那些路径。我想着深度优先搜索和回溯有什么区别呢?百度一下,说回溯是深搜的一种,区别在于回溯不保留搜索树。那么广度优先搜索(bfs)呢?它有哪些应用呢?答:最短路径,分酒问题,八数码问题等。言归正传,这里笔者用java简单实现了一下广搜和深搜。其中深搜是用图+栈实现的,广搜使用图+队列实现的,代码如下:

1.新建一个表示“无向图”类nodirectiongraph

package com.wly.algorithmbase.datastructure;
/** 
 * 无向图 
 * @author wly 
 * 
 */
public class nodirectiongraph {
	private int mmaxsize;
	//图中包含的最大顶点数 
	private graphvertex[] vertexlist;
	//顶点数组 
	private int[][] indicatormat;
	//指示顶点之间的连通关系的邻接矩阵 
	private int nvertex;
	//当前实际保存的顶点数目 
	public nodirectiongraph(int maxsize) {
		mmaxsize = maxsize;
		vertexlist = new graphvertex[mmaxsize];
		indicatormat = new int[mmaxsize][mmaxsize];
		nvertex = 0;
		//初始化邻接矩阵元素为0 
		for (int j=0;j<mmaxsize;j++) {
			for (int k=0;k<mmaxsize;k++) {
				indicatormat[j][k] = 0;
			}
		}
	}
	public void addvertex(graphvertex v) {
		if(nvertex < mmaxsize) {
			vertexlist[nvertex++] = v;
		} else {
			system.out.println("---插入失败,顶点数量已达上限!");
		}
	}
	/** 
   * 修改邻接矩阵,添加新的边 
   * @param start 
   * @param end 
   */
	public void addedge(int start,int end) {
		indicatormat[start][end] = 1;
		indicatormat[end][start] = 1;
	}
	/** 
   * 打印邻接矩阵 
   */
	public void printindicatormat() {
		for (int[] line:indicatormat) {
			for (int i:line) {
				system.out.print(i + " ");
			}
			system.out.println();
		}
	}
	/** 
   * 深度优先遍历 
   * @param vertexindex 表示要遍历的起点,即图的邻接矩阵中的行数 
   */
	public void dfs(int vertexindex) {
		arraystack stack = new arraystack();
		//1.添加检索元素到栈中 
		vertexlist[vertexindex].setvisited(true);
		stack.push(vertexindex);
		int nextvertexindex = getnextvertexindex(vertexindex);
		while(!stack.isempty()) {
			//不断地压栈、出栈,直到栈为空(检索元素也没弹出了栈)为止 
			if(nextvertexindex != -1) {
				vertexlist[nextvertexindex].setvisited(true);
				stack.push(nextvertexindex);
				stack.printelems();
			} else {
				stack.pop();
			}
			//检索当前栈顶元素是否包含其他未遍历过的节点 
			if(!stack.isempty()) {
				nextvertexindex = getnextvertexindex(stack.peek());
			}
		}
	}
	/** 
   * 得到当前顶点的下一个顶点所在行 
   * @param column 
   * @return 
   */
	public int getnextvertexindex(int column) {
		for (int i=0;i<indicatormat[column].length;i++) {
			if(indicatormat[column][i] == 1 && !vertexlist[i].isvisited()) {
				return i;
			}
		}
		return -1;
	}
	/** 
   * 广度优先遍历 
   * @param vertexindex 表示要遍历的起点,即图的邻接矩阵中的行数 
   */
	public void bfs(int vertexindex) {
		chainqueue queue = new chainqueue();
		vertexlist[vertexindex].setvisited(true);
		queue.insert(new queuenode(vertexindex));
		int nextvertexindex = getnextvertexindex(vertexindex);
		while(!queue.isempty()) {
			if(nextvertexindex != -1) {
				vertexlist[nextvertexindex].setvisited(true);
				queue.insert(new queuenode(nextvertexindex));
			} else {
				queue.remove();
			}
			if(!queue.isempty()) {
				nextvertexindex = getnextvertexindex(queue.peek().data);
				queue.printelems();
			}
		}
	}
}

2.然后是一个用数组模拟的栈arraystack

package com.wly.algorithmbase.datastructure;
/** 
 * 使用数组实现栈结构 
 * @author wly 
 * 
 */
public class arraystack {
	private int[] tarray;
	private int topindex = -1;
	//表示当前栈顶元素的索引位置 
	private int capacity_step = 12;
	//数组容量扩展步长 
	public arraystack() {
		/***创建泛型数组的一种方法***/
		tarray = new int[capacity_step];
	}
	/** 
   * 弹出栈顶元素方法 
   * @return 
   */
	public int pop() {
		if(isempty()) {
			system.out.println("错误,栈中元素为空,不能pop");
			return -1;
		} else {
			int i = tarray[topindex];
			tarray[topindex--] = -1;
			//擦除pop元素 
			return i;
		}
	}
	/** 
   * 向栈中插入一个元素 
   * @param t 
   */
	public void push(int t) {
		//检查栈是否已满 
		if(topindex == (tarray.length-1)) {
			//扩展容量 
			int[] temparray = new int[tarray.length + capacity_step];
			for (int i=0;i<tarray.length;i++) {
				temparray[i] = tarray[i];
			}
			tarray = temparray;
			temparray = null;
		} else {
			topindex ++;
			tarray[topindex] = t;
		}
	}
	/** 
   * 得到栈顶元素,但不弹出 
   * @return 
   */
	public int peek() {
		if(isempty()) {
			system.out.println("错误,栈中元素为空,不能peek");
			return -1;
		} else {
			return tarray[topindex];
		}
	}
	/** 
   * 判断当前栈是否为空 
   * @return 
   */
	public boolean isempty() {
		return (topindex < 0);
	}
	/** 
   * 打印栈中元素 
   */
	public void printelems() {
		for (int i=0;i<=topindex;i++) {
			system.out.print(tarray[i] + " ");
		}
		system.out.println();
	}
}

3.在一个用链表模拟的队列chainqueue

package com.wly.algorithmbase.datastructure;
/** 
 * 使用链表实现队列 
 * 
 * @author wly 
 * 
 */
public class chainqueue {
	private queuenode head;
	// 指向队列头节点 
	private queuenode tail;
	// 指向队列尾节点 
	private int size = 0;
	// 队列尺寸 
	public chainqueue() {
	}
	/** 
   * 插入新节点到队列尾 
   */
	public void insert(queuenode node) {
		// 当然也可以这么写,添加tail.prev = node 
		if (head == null) {
			head = node;
			tail = head;
		} else {
			node.next = tail;
			tail.prev = node;
			// 双向连接,确保head.prev不为空 
			tail = node;
		}
		size++;
	}
	/** 
   * 移除队列首节点 
   */
	public queuenode remove() {
		if (!isempty()) {
			queuenode temp = head;
			head = head.prev;
			size--;
			return temp;
		} else {
			system.out.println("异常操作,当前队列为空!");
			return null;
		}
	}
	/** 
   * 队列是否为空 
   * 
   * @return 
   */
	public boolean isempty() {
		if (size > 0) {
			return false;
		} else {
			return true;
		}
	}
	/** 
   * 返回队列首节点,但不移除 
   */
	public queuenode peek() {
		if (!isempty()) {
			return head;
		} else {
			system.out.println();
			system.out.println("异常操作,当前队列为空!");
			return null;
		}
	}
	/** 
   * 返回队列大小 
   * 
   * @return 
   */
	public int size() {
		return size;
	}
	/** 
   * 打印队列中的元素 
   */
	public void printelems() {
		queuenode tempnode = head;
		while(tempnode != null) {
			system.out.print(tempnode.data + " ");
			tempnode = tempnode.prev;
		}
		system.out.println();
	}
}
/** 
 * 节点类 
 * 
 * @author wly 
 * 
 */
class queuenode {
	queuenode prev;
	queuenode next;
	int data;
	public queuenode(int data) {
		this.data = data;
	}
	public int getdata() {
		return data;
	}
	public void setdata(int data) {
		this.data = data;
	}
	@override 
	  public string tostring() {
		// todo auto-generated method stub 
		super.tostring();
		return data + "";
	}
}

4.测试一下test_bfs_dfs

package com.wly.algorithmbase.search;
import com.wly.algorithmbase.datastructure.graphvertex;
import com.wly.algorithmbase.datastructure.nodirectiongraph;
/** 
 * 基于图的深度优先搜索 
 * @author wly 
 * 
 */
public class test_bfs_dfs {
	public static void main(string[] args) {
		//初始化测试数据 
		nodirectiongraph graph = new nodirectiongraph(7);
		graph.addvertex(new graphvertex("a"));
		graph.addvertex(new graphvertex("b"));
		graph.addvertex(new graphvertex("c"));
		graph.addvertex(new graphvertex("d"));
		graph.addvertex(new graphvertex("e"));
		graph.addvertex(new graphvertex("f"));
		graph.addvertex(new graphvertex("g"));
		graph.addedge(0, 1);
		graph.addedge(0, 2);
		graph.addedge(1, 3);
		graph.addedge(1, 4);
		graph.addedge(3, 6);
		graph.addedge(2, 5);
		system.out.println("--图的邻接矩阵--");
		graph.printindicatormat();
		//测试深搜 
		system.out.println("--深度优先搜索--");
		graph.dfs(0);
		graph = new nodirectiongraph(7);
		graph.addvertex(new graphvertex("a"));
		graph.addvertex(new graphvertex("b"));
		graph.addvertex(new graphvertex("c"));
		graph.addvertex(new graphvertex("d"));
		graph.addvertex(new graphvertex("e"));
		graph.addvertex(new graphvertex("f"));
		graph.addvertex(new graphvertex("g"));
		graph.addedge(0, 1);
		graph.addedge(0, 2);
		graph.addedge(1, 3);
		graph.addedge(1, 4);
		graph.addedge(3, 6);
		graph.addedge(2, 5);
		system.out.println("--广度优先搜索--");
		graph.bfs(0);
	}
}

这里测试的图结构如下:

Java编程实现基于图的深度优先搜索和广度优先搜索完整代码

运行结果如下:

--图的邻接矩阵-- 
0 1 1 0 0 0 0  
1 0 0 1 1 0 0  
1 0 0 0 0 1 0  
0 1 0 0 0 0 1  
0 1 0 0 0 0 0  
0 0 1 0 0 0 0  
0 0 0 1 0 0 0  
--深度优先搜索-- 
0 1  
0 1 3  
0 1 3 6  
0 1 4  
0 2  
0 2 5  
--广度优先搜索-- 
0 1  
0 1 2  
1 2  
1 2 3  
1 2 3 4  
2 3 4  
2 3 4 5  
3 4 5  
3 4 5 6  
4 5 6  
5 6  
6  

这里需要说明一下上面深搜和广搜的运行结果,其中0,1,2,3…分别对应着a,b,c,d...有点绕哈,,见谅~~
o啦~~~

总结

以上就是本文关于java编程实现基于图的深度优先搜索和广度优先搜索完整代码的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!