图的存储与遍历

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

const int N=1e5+10,M=1e5+10;
int n,m,x,y,w;
bool v[N];
vector< pair<int,int> > head[N];

void dfs(int t){
	for(int i=0;i<head[t].size();i++){
		if(v[head[t][i].first]) continue;
		v[head[t][i].first]=true;
		dfs(head[t][i].first);
	}
}

int main() {
	cin>>n>>m;
	for(int i=1;i<=m;i++){
		cin>>x>>y>>w;
		head[x].push_back(make_pair(y,w));
	}
	
    return 0;
}
上一篇:C++ 提高编程 map容器-二叉树


下一篇:map / multimap