图的遍历

PAT (Advanced Level) Practice 图的遍历 相关题

目录

  • 《算法笔记》重点摘要
  • 1021 Deepest Root (25)
  • 1076 Forwards on Weibo (30)

《算法笔记》 10.3 图的遍历 重点摘要

1. 定义

  • 边 两端可以是 相同 的顶点
  • 可以把 无向图 当作所有 边 都由 正向 和 负向 两条 有向边 组成
  • 顶点的:与该顶点相连的边的条数
  • 顶点和边量化的属性分别成为点权边权

2. 存储

2.1 邻接矩阵
  • G[i][j] 存放边权,不存在的边设边权为0、-1 或 一个很大的数
  • 邻接矩阵只适用于顶点数目不太大(一般不超过 1000)的题目
2.2 邻接表
  • 若只存放每条边的终点编号,vector 元素类型定义为 int 即可
vector<int> Adj[N];
Adj[u].push_back(v);
  • 若同时存放终点编号和边权,可建立结构体,vector 元素类型定义为结构体
struct Node{
int v;
int weight;
};
vector<Node> Adj[N];
Adj[u].push_back({v,weight});

3. DFS

若已知给定图为连通图,则只需一次 DFS 即可完成遍历

const int MAXV = 1000;
const INF = 1000000000;
3.1 邻接矩阵
int n, G[MAXV][MAXV];
bool vis[MAXV] = {false};
void DFS(int u, int depth){
vis[u] = true;
// 若需要对 u 进行一些操作,在这里进行
for (int v = 0; v < n; v++)
if (!vis[v] && G[u][v] != INF)
DFS(v, depth + 1);
}
void DFSTrave(){
for (int u = 0; u < n; u++)
if (!vis[u])
DFS(u, 1);
}
3.2 邻接表
vector<int> Adj[MAXV];
int n;
bool vis[MAXV] = {false};
void DFS(int u, int depth){
vis[u] = true;
// 若需要对 u 进行一些操作,在这里进行
for(int i = 0; i < Adj[u].size(); i++){
int v = Adj[u][i];
if (!vis[v])
DFS(v, depth + 1);
}
}
void DFSTrave(){
for (int u = 0; u < n; u++)
if (!vis[u])
DFS(u,1);
}

4. BFS

4.1 邻接矩阵
int n, G[MAXV][MAXV];
bool inq[MAXV] = {false};
void BFS(int u){
queue<int> q;
q.push(u);
inq[u] = true;
while (!q.empty()){
int u = q.front();
q.pop();
for (int v = 0; v < n; v++){
if (!inq[v] && G[u][v] != INF){
q.push(v);
inq[v] = true;
}
}
}
}
void BFSTrave(){
for (int u = 0; u < n; u++)
if (!inq[u])
BFS(u);
}
4.2 邻接表
vector<int> Adj[MAXN];
int n;
bool inq[MAXN] = {false};
void BFS(int u){
queue<int> q;
q.push(u);
inq[u] = true;
while (!q.empty()){
int u = q.front();
q.pop();
for (int i = 0; i < Adj[u].size(); i++){
int v = Adj[u][i];
if (!inq[v]){
q.push(v);
inq[v] = true;
}
}
}
}
void BFSTrave(){
for (int u = 0; u < n; u++)
if (!inq[u])
BFS(u);
}
4.3 输出结点层号(邻接表)
struct Node{
int v;
int level;
};
vector<Node> Adj[N];
void BFS(int s){
queue<Node> q;
Node start = {s,0};
q.push(start);
inq[start.v] = true;
while(!q.empty()){
Node now = q.front();
q.pop();
int u = now.v;
for (int i = 0; i < Adj[u].size(); i++){
Node next = Adj[u][i];
next.level = now.level + 1;
if (!inq[next.v]){
q.push(next);
inq[next.v] = true;
}
}
}
}

1021 Deepest Root (25)

题目思路

  • 边为双向,邻接表法注意两个方向都要存储
  • 先按正常 DFS 遍历一遍,记录连通分量个数
  • 若不为树(分量个数 > 1),直接按要求输出分量个数即可
  • 若为树(分量个数 = 1),分别以每个结点为根结点进行 DFS,记录这样遍历树的深度,与最大深度比较
    • 相等则将此根压入根集合中
    • 若大于最大深度,说明找到了更大深度,将之前的根集合清空,压入新发现的根结点
#include<iostream>
#include<vector>
#include<set>
using namespace std;
set<int> roots;
vector<int> Adj[10001];
int n, components = 0, depth = 0, maxdepth = 0;
bool vis[10001] = {false};
void DFS(int root, int level){
vis[root] = true;
if (level > depth) depth = level;
for (int i = 0; i < Adj[root].size(); i++)
if (!vis[Adj[root][i]])
DFS(Adj[root][i], level+1);
}
void DFSTrave(){
for (int i = 1; i < n + 1; i++){
if (!vis[i]){
DFS(i, 0);
components++;
}
}
if (components == 1){
for (int i = 1; i < n + 1; i++){
fill(vis, vis+10001, false);
depth = 0;
DFS(i,0);
if (depth == maxdepth) roots.insert(i);
else if (depth > maxdepth){
maxdepth = depth;
roots.clear();
roots.insert(i);
}
}
}
}
int main()
{
int u, v;
scanf("%d", &n);
for (int i = 1; i < n; i++){
scanf("%d%d", &u, &v);
Adj[u].push_back(v);
Adj[v].push_back(u);
}
DFSTrave();
if (components > 1) printf("Error: %d components\n", components);
else for (auto it: roots) printf("%d\n",it);
return 0;
}

1076 Forwards on Weibo (30)

题目思路:带层数的广度优先

  • 用 Node 结构体同时保存 id 和 level
  • 用 inq 记录结点是否入队过,入队过不能重复入队(重复转发消息)
  • 记录结点层数,若超过要求的最高层数也不可再入队
#include<iostream>
#include<vector>
#include<queue>
using namespace std;
struct Node{
int id, level;
};
int maxlevel, numforward;
vector<Node> Adj[1001];
void BFS(int start){
bool inq[1001] = {false};
queue<Node> q;
q.push({start,0});
inq[start] = true;
while (!q.empty()){
Node now = q.front();
q.pop();
for (int i = 0; i < Adj[now.id].size(); i++){
Node next = Adj[now.id][i];
next.level = now.level + 1;
if (!inq[next.id] && next.level <= maxlevel){
inq[next.id] = true;
q.push(next);
numforward++;
}
}
}
}
int main()
{
int n, m, followed, k, query;
scanf("%d%d", &n, &maxlevel);
for (int i = 1; i < n + 1; i++){
scanf("%d", &m);
for (int j = 0; j < m; j++){
scanf("%d", &followed);
Adj[followed].push_back({i,0});
}
}
scanf("%d", &k);
for (int i = 0; i < k; i++){
scanf("%d", &query);
numforward = 0;
BFS(query);
printf("%d\n", numforward);
}
return 0;
}

PAT甲级 图的遍历 相关题_C++题解的更多相关文章

  1. PAT甲级 并查集 相关题_C++题解

    并查集 PAT (Advanced Level) Practice 并查集 相关题 <算法笔记> 重点摘要 1034 Head of a Gang (30) 1107 Social Clu ...

  2. PAT甲级 Dijkstra 相关题_C++题解

    Dijkstra PAT (Advanced Level) Practice Dijkstra 相关题 目录 <算法笔记>重点摘要 1003 Emergency (25) <算法笔记 ...

  3. PAT甲级 二叉树 相关题_C++题解

    二叉树 PAT (Advanced Level) Practice 二叉树 相关题 目录 <算法笔记> 重点摘要 1020 Tree Traversals (25) 1086 Tree T ...

  4. PAT甲级 二叉查找树 相关题_C++题解

    二叉查找树 PAT (Advanced Level) Practice 二叉查找树 相关题 目录 <算法笔记> 重点摘要 1099 Build A Binary Search Tree ( ...

  5. PAT甲级 图 相关题_C++题解

    图 PAT (Advanced Level) Practice 用到图的存储方式,但没有用到图的算法的题目 目录 1122 Hamiltonian Cycle (25) 1126 Eulerian P ...

  6. PAT甲级 树 相关题_C++题解

    树 目录 <算法笔记>重点摘要 1004 Counting Leaves (30) 1053 Path of Equal Weight (30) 1079 Total Sales of S ...

  7. PAT甲级 堆 相关题_C++题解

    堆 目录 <算法笔记>重点摘要 1147 Heaps (30) 1155 Heap Paths (30) <算法笔记> 9.7 堆 重点摘要 1. 定义 堆是完全二叉树,树中每 ...

  8. PAT甲级 散列题_C++题解

    散列 PAT (Advanced Level) Practice 散列题 目录 <算法笔记> 重点摘要 1002 A+B for Polynomials (25) 1009 Product ...

  9. PAT甲级 排序题_C++题解

    排序题 PAT (Advanced Level) Practice 排序题 目录 <算法笔记> 6.9.6 sort()用法 <算法笔记> 4.1 排序题步骤 1012 The ...

随机推荐

  1. GB∕T 35658平台过检 已通过最新的部标JT/T 808-2019, JT/T 809-2019标准检测

    2019年交通部GPS平台检测标准发生了重大变化, 原来的796平台功能标准, 变更为GB/T35658标准, 这个标准其实2017年就公布了, 实际上还是796标准, 但是检测项目,以前是可选的, ...

  2. 在取变量名的时候,千万不要用new

    这样子是会报错的

  3. Docker:Docker Compose 详解

    Docker Compose 概述与安装? 前面我们使用 Docker 的时候,定义 Dockerfile 文件,然后使用 docker build.docker run 等命令操作容器.然而微服务架 ...

  4. Arts打卡第8周

    Algorithm.主要是为了编程训练和学习. 每周至少做一个 leetcode 的算法题(先从Easy开始,然后再Medium,最后才Hard). 进行编程训练,如果不训练你看再多的算法书,你依然不 ...

  5. Access the value of a member expression

    Access the value of a member expression 解答1 You can compile and invoke a lambda expression whose bod ...

  6. python -- 安装+pip+requests

    python3 安装库 sudo python3 -m pip install beautifulsoup4   步骤1:安装pyenv 为了能顺利的将系统的python和下载的python版本呼唤, ...

  7. Java网络编程之Netty

    一.Netty概述 Netty 是由JBOSS 提供的一个java 开源框架.Netty 提供异步的.事件驱动的网络应用程序框架和工具,用以快速开发高性能.高可靠性的网络服务器和客户端程序. 也就是说 ...

  8. Android中为什么主线程不会因为Looper.loop()方法造成阻塞

    很多人都对Handler的机制有所了解,如果不是很熟悉的可以看看我 如果看过源码的人都知道,在处理消息的时候使用了Looper.loop()方法,并且在该方法中进入了一个死循环,同时Looper.lo ...

  9. Leetcode: Sum of Two Integers && Summary: Bit Manipulation

    Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -. Exam ...

  10. NetHogs监控Linux的每个进程流量

    在日常运维环境中,我们肯定会遇到以下这种需求: 1.网络流量异常,不知道是哪个程序的流量爆涨? 2.日常需要监控网络实时的流量进去数据 面试装逼系列|这篇文章,让运维监控不再成为你的短板! 学会这 1 ...