我正在实现 BFS 算法。我在 IDE 中编写了此代码。
系统:
Windows 10
开发C++

bfs()函数可能出错。我仅出于参考而发布了所有代码。
我的C++ 代码:


#include<bits/stdc++.h>
using namespace std;

class Graph{
    int v; // number of vertices
    vector<int>*adj;
    public:
        /**
         * Constructor to initialize the graph.
         * @param v an integer: number of nodes in the graph
         */
        Graph(int V){
            this->v=V;
            this->adj=new vector<int>[V];
        }

        /**
         * This function add a new edge to the graph.
         * @param u an integer: representing a node in the graph.
         * @param v an integer: representing a node in the graph.
         * @param biDir a bool: true denotes bidirectional edge, unidirectional otherwise.
         */
        void addEdge(int u,int v,bool biDir=false){
            adj[u].push_back(v);
            if(biDir)
                adj[v].push_back(u);
        }
        /**
         * This function traverse the given graph using BFS traversal technique.
         * @param src a node: function starts traversing from this node.
         */
        void bfs(int src){
            // create a array of boolean to keep track of visited nodes.
            vector<bool>visited(this->v,false);
           // visited[0]=true;
            // make a queue and insert src into it
            queue<int>q;
            q.push(src); // insert src into queue
            // mark first node as visited
            visited[src]=true;
            while(!q.empty()){
                int node=q.front();
                // visit
                cout<<node<<" ";
                // remove this node from queue
                q.pop();
                // visit every node adjacent to node 'node'
                // if that node not visited then visit and enque it.
                for(int adjNode:adj[node]){
                    if(!visited[adjNode]){
                        visited[adjNode]=true;
                        q.push(adjNode);
                    }
                }
            }

        }
         void print(){
            // for every vertex
            for(int i=1;i<this->v;i++){
                // every connected edge from vertex
                cout<<i<<"-> ";
                for(int node:adj[i]){
                    cout<<node<<" ";
                }
                cout<<endl;
            }
        }
};
int main(){
    Graph g(5+1);
    g.addEdge(1,2);
    g.addEdge(1,4);
    g.addEdge(4,6);
    g.addEdge(3,6);
    g.addEdge(2,5);
    g.addEdge(5,2);
    g.addEdge(6,3);
    g.addEdge(6,4);
    g.print();
    cout<<endl;cout<<endl;cout<<endl;cout<<endl;
    g.bfs(1);
    return 0;
}

虽然该程序正在编译中。但是在运行时,仅执行 print()函数。函数 bfs()不执行。
它将生成以下输出: print()函数生成的
1-> 2 4
2-> 5
3-> 6
4-> 6
5-> 2

当我在 bfs()中更改此代码时

vector<bool>visited(this->v,false);

转到此

 bool visited[this->v];
            for(int i=0;i<this->v;i++)
                visited[i]=false;

此代码也不会执行 bfs()。

最佳答案

如我所见,您正在使用基于1的节点值索引。我的意思是您没有将0视为图形中的节点。图中的任何节点都从1开始。在初始化图形时,可以将图形大小的值设置为等于number of nodes + 1
我的意思是,

Graph(int V){
            this->v=V+1;
            this->adj=new vector<int>[V];
        }

这样可以解决您的问题。

关于c++ - 我的C++程序中的某些代码使程序崩溃。我正在执行BFS算法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/61289989/

10-13 08:25