当前位置: 首页 > article >正文

1. 图的广度优先遍历

        当一道题的AC变成了找不同的时候,一切就开始失去意义。

        到底是谁?把Search写成Seacrh,害我一直找不同。

本实验实现邻接表表示下无向图的广度优先遍历。

程序的输入是图的顶点序列和边序列(顶点序列以*为结束标志,边序列以-1,-1为结束标志)。程序的输出为图的邻接表和广度优先遍历序列。例如:

程序输入为:
a
b
c
d
e
f
*
0,1
0,4
1,4
1,5
2,3
2,5
3,5
-1,-1

程序的输出为:
the ALGraph is
a 4 1
b 5 4 0
c 5 3
d 5 2
e 1 0
f 3 2 1
the Breadth-First-Seacrh list:aebfdc

#include <iostream>
#include <vector>
#include <queue>
using namespace std;

struct Node
{
    char data;
    bool visited;
    vector<int> edges;
};
void bfs(vector<Node> &nodeList, int startIndex)
{
    queue<int> nodeQueue;
    nodeQueue.push(startIndex);
    nodeList[startIndex].visited = true;
    while (!nodeQueue.empty())
    {
        int currentIndex = nodeQueue.front();
        nodeQueue.pop();
        cout << nodeList[currentIndex].data;
        for (int i = nodeList[currentIndex].edges.size() - 1; i >= 0; --i)
        {
            int nextIndex = nodeList[currentIndex].edges[i];
            if (!nodeList[nextIndex].visited)
            {
                nodeQueue.push(nextIndex);
                nodeList[nextIndex].visited = true;
            }
        }
    }
}

int main()
{
    vector<Node> nodeList;
    char ch;
    int indexA, indexB;
    while (cin >> ch && ch != '*')
    {
        Node node{ch, false, {}};
        nodeList.push_back(node);
    }
    while (cin >> indexA >> ch >> indexB && !(indexA == -1 && indexB == -1))
    {
        nodeList[indexA].edges.push_back(indexB);
        nodeList[indexB].edges.push_back(indexA);
    }
    cout << "the ALGraph is\n";
    for (const Node &node : nodeList)
    {
        cout << node.data;
        for (int i = node.edges.size() - 1; i >= 0; --i)
            cout << " " << node.edges[i];
        cout << endl;
    }
    cout << "the Breadth-First-Seacrh list:";
    for (int i = 0; i < nodeList.size(); ++i)
        if (!nodeList[i].visited)
            bfs(nodeList, i);
    cout << endl;
}


http://www.kler.cn/a/145881.html

相关文章:

  • (undone) 并行计算学习 (Day2: 什么是 “伪共享” ?)
  • 开源AI崛起:新模型逼近商业巨头
  • C++ ——— 模拟实现 vector 类
  • 前端开发Web
  • 【自动控制原理】非线性系统 描述函数法 相平面法
  • 用户中心项目教程(五)---MyBatis-Plus完成后端初始化+测试方法
  • docker 常用容器创建(自用)
  • 操作系统题目分类总结 | 进程管理 内存管理 文件系统 设备管理
  • 2023/11/26总结
  • 5 动态规划解分割等和子串
  • bootstrap 5 登录、注册页面
  • Java小游戏“简易版王者荣耀”
  • YOLOV7主干改进,使用fasternet轻量化改进主干(完整教程)
  • 人工智能|机器学习——循环神经网络的简洁实现
  • Docker 命令详解
  • hivesql 将json格式字符串转为数组
  • 飞翔的鸟小游戏
  • 医保线上购药系统:引领医疗新潮流
  • 【古诗生成AI实战】之四——模型包装器与模型的训练
  • 数字图像处理-Matlab实验
  • Doris单机部署——2.0.1.1版本
  • 单例模式-C++实现
  • 使用 Vue3 + Pinia + Ant Design Vue3 搭建后台管理系统
  • 有理数比较
  • 计算机图形学-变换基础
  • Linux 面试题(一)