左神算法笔记(十一)——图

2021/9/24 11:10:52

本文主要是介绍左神算法笔记(十一)——图,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

图的存储方式:邻接表,邻接矩阵

邻接表:
邻接表形式保存图结构

邻接矩阵:
邻接矩阵表示图
具体的方法和定义可以参考图论中的内容。

宽度优先遍历和深度优先遍历

宽度优先遍历:利用队列实现

  1. 从源节点开始依次按照宽度进入队列,然后弹出
  2. 每弹出一个点,就把该节点所有没进过队列的邻接点放入队列
  3. 直到队列变空

BFS:

public static void bfs(Node node){
	if(node == null){
		return;
	}
	Queue<Node> queue = new LinkedList<>();
	HashSet<Node> map = new HashSet<>();
	queue.add(node);
	map.add(node);
	while(!queue.isEmpty()){
		Node cur = queue.poll();
		System.out.println(cur.value);
		for(Node next: cur.nexts){
			if(!map.contains(next)){
				map.add(next);
				queue.add(next);
			}
		}
	}
}

深度优先遍历:利用栈实现

  1. 从源节点开始将节点按照深度放入栈,然后弹出
  2. 每弹出一个点,则将该节点下一个没有进入栈的邻接点放入栈
  3. 直至栈变空
    DFS:
public static void dfs(Node node){
	if(node == null){
		return;
	}
	Stack<Node> stack = new Stack<>();
	HashSet<Node> set = new HashSet<>();
	stack.add(node);
	set.add(node);
	System.out.println(node.value);
	while(!stack.isEmpty()){
		Node cur = stack.pop();
		for(Node next:cur.nexts){
			if(!set.contains(next)){
				stack.push(cur);
				stack.push(next);
				set.add(next);
				System.out.println(next.value);
				break;
			}
		}
	}
}

拓扑排序算法



这篇关于左神算法笔记(十一)——图的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程