打印向量中的值
Printing the values from vector
我知道发生这种情况的原因,但不知道如何解决,因为我是 STL 的新手。
我正在接受用户的输入并使用向量表示加权图。
我声明了一个向量 pair 来存储边的值和权重。
#include<iostream>
#include<vector>
using namespace std;
int main()
{
int n,m,c;
cout<<"Enter n,m : "<<endl;
cin>>n>>m;
vector<pair<int,int>> adj[n+1];
cout<<"If un-directed input 1 else input 0: "<<endl;
cin>>c;
cout<<"Enter the values of u,v and the waight : "<<endl;
for(int i=0;i<m;i++)
{
int u,v,w;
cin>>u>>v>>w;
adj[u].push_back({v,w});
if(c==1)
adj[v].push_back({u,w});
}
for(int i=0;i<=n;i++)
{
for(int j:adj[i])
{
cout<<i<<"->" << j <<endl;
}
cout<<endl;
}
cout<<"Inserted Successfully";
return 0;
}
但是当我打印这些值时我无法编译程序。就是因为这个for循环。
for(int j:adj[i])
{
cout<<i<<"->" << j <<endl;
}
由于 adj[i] 中的值是一对边和权重,因此 for_each 循环无法将对值转换为单个 int 值。这可能是原因,但我无法解决这个问题,因为我是 STL 的新手。
请帮忙。
j是一对int
为了访问 first/second int 你必须使用 j.first/ j.second
for(pair<int,int> j:adj[i])
{
cout<<i<<"->" << j.second <<endl;
}
我知道发生这种情况的原因,但不知道如何解决,因为我是 STL 的新手。
我正在接受用户的输入并使用向量表示加权图。
我声明了一个向量 pair
#include<iostream>
#include<vector>
using namespace std;
int main()
{
int n,m,c;
cout<<"Enter n,m : "<<endl;
cin>>n>>m;
vector<pair<int,int>> adj[n+1];
cout<<"If un-directed input 1 else input 0: "<<endl;
cin>>c;
cout<<"Enter the values of u,v and the waight : "<<endl;
for(int i=0;i<m;i++)
{
int u,v,w;
cin>>u>>v>>w;
adj[u].push_back({v,w});
if(c==1)
adj[v].push_back({u,w});
}
for(int i=0;i<=n;i++)
{
for(int j:adj[i])
{
cout<<i<<"->" << j <<endl;
}
cout<<endl;
}
cout<<"Inserted Successfully";
return 0;
}
但是当我打印这些值时我无法编译程序。就是因为这个for循环。
for(int j:adj[i])
{
cout<<i<<"->" << j <<endl;
}
由于 adj[i] 中的值是一对边和权重,因此 for_each 循环无法将对值转换为单个 int 值。这可能是原因,但我无法解决这个问题,因为我是 STL 的新手。
请帮忙。
j是一对int 为了访问 first/second int 你必须使用 j.first/ j.second
for(pair<int,int> j:adj[i])
{
cout<<i<<"->" << j.second <<endl;
}