20240319-图论

图论练习题目

      • 拓扑排序
        • 深度优先搜索方法
        • 广度优先搜索方法
      • 无向无权图
      • 无向有权图
      • 有向无权图 利用广度优先搜索算法
      • 有向有权图 带排序的广度优先算法/dijkstra
      • 最小生成树
        • prims算法
        • Kruskal's Algorithm
      • 最小割 min-cut
      • 二分图 Bipartite Graph 队列
      • 例题1 所有可能的路径
      • 例题2 岛屿数量
      • 例题3 岛屿最大面积
      • 例题4 飞地的数量
      • 例题5 被围绕的区域
      • 例题6 太平洋大西洋水流问题
      • 例题7 钥匙和房间
      • 例题8 寻找图中是否存在路径
      • 例题9 冗余连接
      • 例题10 课程表 拓扑排序
      • 例题11 单词接龙
      • 例题12 最小高度树
      • 例题13 省份数量

dfs采用的是栈,bfs采用的是队列。
sorted(L.items(),key=lambda x:(x[0],x[1],x[2],x[3]))

拓扑排序

在这里插入图片描述

深度优先搜索方法
import collections
graph = {'A':['F','E','C'],'B':['A','C'],'C':[],'D':['F'],'E':[],'F':['E','G'],'G':['F']
}
n=len(graph)
visted={key:0 for key in graph.keys()}
ans=[]
def dfs(u):if visted[u]==2:returnvisted[u]=1for v in graph[u]:if visted[v]==0:dfs(v)visted[u]=2ans.append(u)
for key in graph.keys():dfs(key)
print(ans)
# ['E', 'G', 'F', 'C', 'A', 'B', 'D']
广度优先搜索方法
import collections
graph = {'A':['F','E','C'],'B':['A','C'],'C':[],'D':['F'],'E':[],'F':['E','G'],'G':['F']
}
n=len(graph)
visted={key:0 for key in graph.keys()}
queue=[]
ans=[]
def bfs(u):if visted[u]:returnqueue.append(u)visted[u]=1while queue:node=queue.pop(0)ans.append(node)for v in graph[node]:if visted[v]==0:visted[v]=1queue.append(v)for key in graph.keys():bfs(key)
# bfs('A')
# print(ans,visted)
# bfs('B')
# print(ans,visted)
# ['E', 'G', 'F', 'C', 'A', 'B', 'D']
print(ans)
# ['A', 'F', 'E', 'C', 'G', 'B', 'D']

无向无权图

graph={1:[2,5],2:[1,3,4],3:[2],4:[2],5:[1,6],6:[5,7],7:[6]
}
n=len(graph)+1
# visted=[0]*n
visted=[0, 0, 0, 0, 0, 0, 0,0]
def dfs(u):ans=1visted[u]=1for v in graph[u]:if visted[v]==0:vh=dfs(v)
#             print(u,v,vh)ans=max(ans,vh+1)return ansdfs(2) #5

无向有权图

有向无权图 利用广度优先搜索算法

在这里插入图片描述在这里插入图片描述

graph={1:[2,4],2:[4,5],3:[1,6],4:[3,5,6,7],5:[7],6:[],7:[6],
}
def shortest(root,graph):n=len(graph)+1path=[0]*nvisit=[0]*ndist=[float('inf')]*nqueue=[root]visit[root]=1dist[root]=0while queue:ver=queue.pop()for nex in graph[ver]:if visit[nex]==0:path[nex]=vervisit[nex]=1dist[nex]=dist[ver]+1queue.append(nex)print(dist,path,visit)shortest(3,graph)

有向有权图 带排序的广度优先算法/dijkstra

在这里插入图片描述在这里插入图片描述

import heapq
graph1={1:[(2,2),(1,4)],2:[(3,4),(10,5)],3:[(4,1),(5,6)],4:[(2,3),(2,5),(8,6),(4,7)],5:[(1,7)],6:[],7:[(1,6)],
}
def shortest2(root,graph):n=len(graph)+1path=[0]*nvisit=[0]*ndist=[float('inf')]*ndist[root]=0queue=[(0,root)]heapq.heapify(queue)while queue:dis,ver=heapq.heappop(queue)visit[ver]=1for nex in graph[ver]:if visit[nex[1]]==0:heapq.heappush(queue,nex)if dist[ver]+nex[0]<dist[nex[1]]:dist[nex[1]]=dist[ver]+nex[0]path[nex[1]]=verprint(dist,path,visit)shortest2(3,graph1)
#[inf, 4, 6, 0, 5, 7, 5, 8] [0, 3, 1, 0, 1, 4, 3, 5] [0, 1, 1, 1, 1, 1, 1, 1]

最小生成树

prims算法

树是连通 无向 无环图。n个结点一定有n-1条边。
一个普通的生成树
在这里插入图片描述
最小生成树
在这里插入图片描述

Kruskal’s Algorithm

在这里插入图片描述在这里插入图片描述

graph=[[3,1,4],[3,4,2],[3,6,5],[1,4,1],[4,6,8],[1,2,2],[6,7,1],[2,4,3],[4,7,4],[2,5,10],[5,7,6],[4,5,7]
]
def kruskal(graph,n):find=[i for i in range(n+1)]graph.sort(key=lambda x:x[2])def parent(x):if find[x]==x:return xelse:return find[x]ans=[]while len(ans)<n-1:x,y,w = graph.pop(0)if parent(x)!=parent(y):ans.append([x,y,w])find[x]=yreturn anskruskal(graph,7)    
# [[1, 4, 1], [6, 7, 1], [3, 4, 2], [1, 2, 2], [2, 4, 3], [3, 1, 4]]

最小割 min-cut

二分图 Bipartite Graph 队列

例题1 所有可能的路径

https://leetcode.cn/problems/all-paths-from-source-to-target/description/

class Solution:def allPathsSourceTarget(self, graph: List[List[int]]) -> List[List[int]]:path = [0]ans=[]def dfs(graph,index):if index==len(graph)-1:ans.append(path[:])return for node in graph[index]:path.append(node)dfs(graph,node)path.pop()dfs(graph,0)return ans
class Solution:def allPathsSourceTarget(self, graph: List[List[int]]) -> List[List[int]]:from collections import dequeans=[]q=deque([[0],])while q:path = q.popleft()if path[-1]==len(graph)-1:ans.append(path)continuefor v in graph[path[-1]]:q.append(path+[v])return ans 

例题2 岛屿数量

https://leetcode.cn/problems/number-of-islands/description/

class Solution:def numIslands(self, grid: List[List[str]]) -> int:n=len(grid)m=len(grid[0])ans=0def wipe(x,y):dir=[lambda x,y:[x+1,y],#下lambda x,y:[x-1,y],#上lambda x,y:[x,y+1],#右lambda x,y:[x,y-1],#左]stack=[(x,y)]while stack:x,y=stack.pop()grid[x][y]='0'for i in range(4):nxt_x,nxt_y=dir[i](x,y)if nxt_x>=0 and nxt_x <n and nxt_y<m and nxt_y>=0:if grid[nxt_x][nxt_y]=='1':stack.append((nxt_x,nxt_y))for i in range(n):for j in range(m):if grid[i][j]=='1':ans+=1wipe(i,j)return ans

例题3 岛屿最大面积

https://leetcode.cn/problems/max-area-of-island/

class Solution:def maxAreaOfIsland(self, grid: List[List[int]]) -> int:n=len(grid)m=len(grid[0])ans=0for i in range(n):for j in range(m):if grid[i][j]==1:grid[i][j]=0tmp=1stack=[(i,j)]dir=[lambda x,y:[x+1,y],lambda x,y:[x-1,y],lambda x,y:[x,y+1],lambda x,y:[x,y-1],]while stack:x,y=stack.pop()grid[x][y]=0for k in range(4):nx,ny = dir[k](x,y)if nx>=0 and nx<n and ny>=0 and ny<m and grid[nx][ny]==1:tmp+=1grid[nx][ny]=0stack.append((nx,ny))ans = max(ans,tmp)return ans

例题4 飞地的数量

https://leetcode.cn/problems/number-of-enclaves/

class Solution:def numEnclaves(self, grid: List[List[int]]) -> int:n=len(grid)m=len(grid[0])ans=0def dfs(x,y):for dx,dy in (0,1),(1,0),(-1,0),(0,-1):nx = x+dxny =y+dyif 0<= nx <n and 0<= ny <m and grid[nx][ny]==1:grid[nx][ny]=0dfs(nx,ny)for i in [0,n-1] :for j in range(m):if grid[i][j]==1:ans+=1grid[i][j]=0dfs(i,j)for i in range(n):for j in [0,m-1]:if grid[i][j]==1:ans+=1grid[i][j]=0dfs(i,j)return sum(sum(g) for g in grid)
class Solution {public static int[][] dirs={{-1,0},{1,0},{0,1},{0,-1}};private int n,m;private boolean[][] visted;public int numEnclaves(int[][] grid) {n = grid.length;m=grid[0].length;visted = new boolean[n][m];for(int i=0;i<n;i++){dfs(grid,i,0);dfs(grid,i,m-1);}for(int j=0;j<m;j++){dfs(grid,0,j);dfs(grid,n-1,j);}int ans=0;for(int i=0;i<n;i++){for(int j =0;j<m;j++){if(grid[i][j]==1 && !visted[i][j]){ans+=1;}}}return ans;}public void dfs(int[][]grid,int x,int y){if (x<0 || x>=n || y<0 || y>=m || grid[x][y]==0 || visted[x][y]){return;}visted[x][y]=true;for(int[] dir:dirs){dfs(grid,x+dir[0],y+dir[1]);}}
}

例题5 被围绕的区域

https://leetcode.cn/problems/surrounded-regions/description/

class Solution:def solve(self, board: List[List[str]]) -> None:"""Do not return anything, modify board in-place instead."""n=len(board)m=len(board[0])visted=[[0]*m for _ in range(n)]def dfs(x,y):if 0<=x<n and 0<=y<m and board[x][y]=='O' and not visted[x][y]:visted[x][y]=1for dx,dy in (0,1),(0,-1),(1,0),(-1,0):dfs(x+dx,y+dy)else:returnfor i in range(n):dfs(i,0)dfs(i,m-1)for j in range(m):dfs(0,j)dfs(n-1,j)for i in range(n):for j in range(m):if board[i][j]=='O' and visted[i][j]==0 :board[i][j]='X'

例题6 太平洋大西洋水流问题

https://leetcode.cn/problems/pacific-atlantic-water-flow/description/

class Solution:def pacificAtlantic(self, heights: List[List[int]]) -> List[List[int]]:n=len(heights)m=len(heights[0])pacific =[[0]*m for _ in range(n)]atlantic=[[0]*m for _ in range(n)]ans=[]def dfs(x,y,grid):grid[x][y]=1for dx,dy in (0,1),(0,-1),(1,0),(-1,0):nx=x+dxny=y+dyif 0<=nx<n and 0<=ny<m and heights[nx][ny]>=heights[x][y] and grid[nx][ny]==0:dfs(nx,ny,grid)for i in range(n):for j in range(m):if j==0 or i==0:dfs(i,j,pacific)if i==n-1 or j==m-1:atlantic[i][j]=1dfs(i,j,atlantic)for i in range(n):for j in range(m):if pacific[i][j]==1 and atlantic[i][j]==1:ans.append([i,j])return ans

例题7 钥匙和房间

https://leetcode.cn/problems/keys-and-rooms/

class Solution:def canVisitAllRooms(self, rooms: List[List[int]]) -> bool:n=len(rooms)visted=[0]*ndef dfs(x):if visted[x]:returnvisted[x]=1for nx in rooms[x]:dfs(nx)dfs(0)return sum(visted)==n

例题8 寻找图中是否存在路径

https://leetcode.cn/problems/find-if-path-exists-in-graph/description/

class Solution:def validPath(self, n: int, edges: List[List[int]], source: int, destination: int) -> bool:parent=[i for i in range(n)]def find(x):if x==parent[x]:return xparent[x]=find(parent[x])return find(parent[x])def union(x,y):px=find(x)py=find(y)if px!=py:parent[px]=pyfor u,v in edges:if find(u)!=find(v):union(u,v)return find(source)==find(destination)

例题9 冗余连接

https://leetcode.cn/problems/redundant-connection/description/

class Solution:def findRedundantConnection(self, edges: List[List[int]]) -> List[int]:n=len(edges)parent=[i for i in range(n+1)]def find(x):if x==parent[x]:return xparent[x]=find(parent[x])return find(parent[x])def union(x,y):px=find(x)py=find(y)if px !=py:parent[px]=pyfor u,v in edges:if find(u)==find(v):return [u,v]else:union(u,v)

例题10 课程表 拓扑排序

https://leetcode.cn/problems/course-schedule/description/

import collections
class Solution:def canFinish(self, numCourses: int, prerequisites: List[List[int]]) -> bool:edges=collections.defaultdict(list)visted=[0]*numCoursesrestult=[]valid = Truefor u,v in prerequisites:edges[v].append(u)def dfs(u):nonlocal validvisted[u]=1for v in edges[u]:if visted[v]==0:dfs(v)if not valid:returnelif visted[v]==1:valid=Falsereturnvisted[u]=2restult.append(u)for i in range(numCourses):if valid and not visted[i]:dfs(i)return valid
import collections
class Solution:def canFinish(self, numCourses: int, prerequisites: List[List[int]]) -> bool:edges=collections.defaultdict(list)indeg=[0]*numCoursesfor u,v in prerequisites:edges[v].append(u)indeg[u]+=1queue = [u for u in range(numCourses) if indeg[u]==0]visted =0while queue:u = queue.pop(0)visted+=1for v in edges[u]:indeg[v]-=1if indeg[v]==0:queue.append(v)return visted==numCourses

例题11 单词接龙

https://leetcode.cn/problems/word-ladder/description/

class Solution:def ladderLength(self, beginWord: str, endWord: str, wordList: List[str]) -> int:wordList = set(wordList)if endWord not in wordList:return 0q = deque([(beginWord, 1)])while q:cur, step = q.popleft()for i, x in enumerate(cur):for y in [chr(ord('a')+i) for i in range(26)]:if y != x:nxt = cur[:i] + y + cur[i+1:]if nxt == endWord:return step + 1if nxt in wordList:wordList.remove(nxt)q.append((nxt, step+1))return 0

例题12 最小高度树

https://leetcode.cn/problems/minimum-height-trees/description/

import collections
class Solution:def findMinHeightTrees(self, n: int, edges: List[List[int]]) -> List[int]:graph=collections.defaultdict(list)res=[]for u,v in edges:graph[u].append(v)graph[v].append(u)def dfs(u):ans=1visted[u]=1for v in graph[u]:if visted[v]==0:vh=dfs(v)#             print(u,v,vh)ans=max(ans,vh+1)return ansvisted=[0]*nres.append([0,dfs(0)])for i in range(1,n):visted=[0]*ntmp=dfs(i)if tmp<res[-1][-1]:res=[[i,tmp]]elif tmp==res[-1][-1]:res.append([i,tmp])return [u for u,v in res]

例题13 省份数量

https://leetcode.cn/problems/number-of-provinces/description/
1.利用并查集

class Solution:def findCircleNum(self, isConnected: List[List[int]]) -> int:n=len(isConnected)par=[i for i in range(n+1)]def find(x):if x==par[x]:return xpar[x]=find(par[x])return find(par[x])for i in range(n):for j in range(n):if i!=j and isConnected[i][j]==1:pi=find(i+1)pj= find(j+1)par[pi]=pjfor i in range(n+1):par[i]=find(i)return len(set(par))-1
class Solution:def findCircleNum(self, isConnected: List[List[int]]) -> int:n=len(isConnected)visted=[0]*nans=0def dfs(x):visted[x]=1for j in range(n):if isConnected[x][j]==1 and visted[j]==0:dfs(j)for i in range(n):if visted[i]==0:dfs(i)ans+=1return ans

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/285212.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Linux】写个日志和再谈线程池

欢迎来到Cefler的博客&#x1f601; &#x1f54c;博客主页&#xff1a;折纸花满衣 &#x1f3e0;个人专栏&#xff1a;信号量和线程池 目录 &#x1f449;&#x1f3fb;日志代码Log.cppMain.cc &#x1f449;&#x1f3fb;线程池代码LockGuard.hpp(自定义互斥锁&#xff0c;进…

Java获取方法参数名称方案||SpringBoot配置顺序注解

一: Java获取方法参数名称的方法 普盲: getDeclaredMethods与getMethods的的区别 1、getMethods返回一个包含某些 Method 对象的数组&#xff0c;这些对象反映此 Class 对象所表示的类或接口的公共 member 方法。 2、getDeclaredMethods返回 Method 对象的一个数组&#xff0c…

python绘图matplotlib——使用记录2

本博文来自于网络收集&#xff0c;如有侵权请联系删除 三维图绘制 1 三维散点图2 三维柱状图三维曲面 1 三维散点图 import matplotlib.pyplot as plt import numpy as npfrom mpl_toolkits.mplot3d import Axes3Dfig plt.figure() # ax fig.gca(projection"3d")…

Docker(二):Docker常用命令

docker 查看docker支持的所有命令和参数。 ➜ ~ docker Management Commands:config Manage Docker configscontainer Manage containersimage Manage imagesnetwork Manage networksnode Manage Swarm nodesplugin Manage pluginssecret …

操作系统究竟是什么?在计算机体系中扮演什么角色?

操作系统究竟是什么&#xff1f;在计算机体系中扮演什么角色&#xff1f; 一、操作系统概念二、操作系统如何管理软硬件资源2.1 何为管理者2.2 操作系统如何管理硬件 三、系统调用接口作用四、用户操作接口五、广义操作系统和狭义操作系统 一、操作系统概念 下面是来自百度百科…

51单片机学习笔记——LED闪烁和流水灯

任务分析 首先要知道LED闪烁主要是怎么工作的&#xff0c;闪烁亮灭自然是一下为高一下为低&#xff0c;亮灭的频率则需要延时来进行控制。 上节已经知道了如何点亮那延时如何做呢首先先编写主框架 这样是否可以通过循环将LED灯一直循环闪烁。 以为while一直在循环所以其实是可…

【评分标准】【网络系统管理】2019年全国职业技能大赛高职组计算机网络应用赛项H卷 无线网络勘测设计

第一部分&#xff1a;无线网络勘测设计评分标准 序号评分项评分细项评分点说明评分方式分值1点位设计图AP编号AP编号符合“AP型号位置编号”完全匹配5AP型号独立办公室、小型会议室选用WALL AP110完全匹配5员工寝室选用智分&#xff0c;其他用放装完全匹配5其它区域选用放装AP…

设计模式(十二):中介者模式(行为型模式)

Mediator&#xff0c;中介者模式&#xff1a;用一个中介对象封装一些列的对象交互。属于行为型模式 Facade&#xff0c;外观模式&#xff1a;为子系统中的一组接口提供一致的界面&#xff0c;facade 提供了一高层接口&#xff0c;这个接口使得子系统更容易使用。属于结构型模式…

Linux升级GCC

文章目录 一、安装 EPEL 仓库二、更新yum三、安装 CentOS 开发工具组四、安装scl五、安装gcc 11六、启用gcc 11七、设置永久使用 一、安装 EPEL 仓库 命令&#xff1a; yum install epel-release -y二、更新yum 命令&#xff1a; yum update -y三、安装 CentOS 开发工具组 …

opencv各个模块介绍(2)

Features2D 模块&#xff1a;特征检测和描述子计算模块&#xff0c;包括SIFT、SURF等算法。 Features2D 模块提供了许多用于特征检测和描述子匹配的函数和类&#xff0c;这些函数和类可用于图像特征的提取、匹配和跟踪。 FeatureDetector&#xff1a;特征检测器的基类&#xf…

[BT]BUUCTF刷题第6天(3.24)

第6天 Web [极客大挑战 2019]PHP Payload&#xff1a; O:4:"Name":3:{s:14:"%00Name%00username";s:5:"admin";s:14:"%00Name%00password";s:3:"100";}这道题考点是网站源码备份文件泄露和PHP反序列化&#xff0c;有篇介…

t-rex2开放集目标检测

论文链接&#xff1a;http://arxiv.org/abs/2403.14610v1 项目链接&#xff1a;https://github.com/IDEA-Research/T-Rex 这篇文章的工作是基于t-rex1的工作继续做的&#xff0c;核心亮点&#xff1a; 是支持图片/文本两种模态的prompt进行输入&#xff0c;甚至进一步利用两…

013_Linux(上传rz,下载sz,tar,zip,unzip)

目录 一、上传、下载 1、通过鼠标操作 &#xff08;1&#xff09;下载 &#xff08;2&#xff09;上传 2、通过命令操作 rz、sz &#xff08;1&#xff09;下载 sz &#xff08;2&#xff09;上传 rz 二、压缩、解压 1、tar命令 &#xff08;1&#xff09;压缩 &…

使用amd架构的计算机部署其他架构的虚拟机(如:arm)

1 下载quem模拟器 https://qemu.weilnetz.de/w64/2 QEMU UEFI固件文件下载(引导文件) 推荐使用&#xff1a;https://releases.linaro.org/components/kernel/uefi-linaro/latest/release/qemu64/QEMU_EFI.fd3 QEMU 安装 安装完成之后&#xff0c;需要将安装目录添加到环境变…

vscode的一些技巧

技巧1&#xff1a;调试时传参数 在launch.json的configuration中"pwd"或者"program"选项之后添加如下选项&#xff1a; “--args”:["参数1", "参数2", ..., "参数3] 参数之间使用逗号隔开 技巧2&#xff1a;断点 普通断点使…

通过dbeaver链接dm8数据库

一、环境说明 windows 11 vmware 17 ubuntu 22 tt:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04.3 LTS Release: 22.04 Codename: jammytt:~$ docker info Client:Version: 24.0.5Context: d…

Python 全栈系列236 rabbit_agent搭建

说明 通过rabbit_agent, 以接口方式实现对队列的标准操作&#xff0c;将pika包在微服务内&#xff0c;而不必在太多地方重复的去写。至少在服务端发布消息时&#xff0c;不必再去考虑这些问题。 在分布式任务的情况下&#xff0c;客户端本身会启动一个持续监听队列的客户端服…

Java研学-SpringBoot(二)

二 Spring Boot 介绍 1 简介 Spring Boot是由Pivotal团队提供的全新框架&#xff0c;主要目标是简化Spring应用程序的配置和部署过程&#xff0c;减少开发者在项目搭建和配置上的工作量&#xff0c;让开发者能够更专注于业务逻辑的实现。它使用特定的方式来进行配置&#xff0…

Request请求参数----中文乱码问题

一: GET POST获取请求参数: 在处理为什么会出现中文乱码的情况之前, 首先我们要直到GET 以及 POST两种获取请求参数的不同 1>POST POST获取请求参数是通过输入流getReader来进行获取的, 通过字符输入流来获取响应的请求参数, 并且在解码的时候, 默认的情况是 ISO_885…

基于SpringBoot+Vue+Mybatis的408刷题小程序管理端

简介 原始数据&#xff1a;书目信息、章节信息、题目信息、系统菜单、系统角色、系统用户。 主要任务&#xff1a;系统主要采用spring boot作为后端框架&#xff0c;前端使用vueelementUI&#xff0c;为408刷题小程序提供一个方面的管理和维护的任务&#xff0c;主要功能包括…