sdutacm-資料結構實驗之圖論二:基於鄰接表的廣度優先搜尋遍歷
阿新 • • 發佈:2019-02-15
資料結構實驗之圖論二:基於鄰接表的廣度優先搜尋遍歷
Time Limit: 1000MSMemory Limit: 65536KB
ProblemDescription
給定一個無向連通圖,頂點編號從0到n-1,用廣度優先搜尋(BFS)遍歷,輸出從某個頂點出發的遍歷序列。(同一個結點的同層鄰接點,節點編號小的優先遍歷)
Input
輸入第一行為整數n(0<
n <100),表示資料的組數。對於每組資料,第一行是三個整數k,m,t(0<k<100,0<m<(k-1)*k/2,0<
t<k),表示有m條邊,k個頂點,t為遍歷的起始頂點。下面的m行,每行是空格隔開的兩個整數u,v,表示一條連線u,v頂點的無向邊。
Output
輸出有n行,對應n組輸出,每行為用空格隔開的k個整數,對應一組資料,表示BFS的遍歷結果。
ExampleInput
1
6 7 0
0 3
0 4
1 4
1 5
2 3
2 4
3 5
ExampleOutput
0 3 4 2 5 1
Hint
用鄰接表儲存。
Author
#include <iostream> #include<bits/stdc++.h> using namespace std; int k,m,t; int ans[222],top,vis[222]; struct node { int data; struct node*next; }*a[500001]; void add(int i,int j) { struct node*q; q = new node; q->next = NULL; q->data = j; if(a[i]==NULL) { a[i] = q; } else { q->next = a[i]->next; a[i]->next = q; } } void bfs(int t,int n) { for(int i=0;i<m;i++) { for(node*p = a[i];p;p=p->next) { for(node*q = p->next;q;q=q->next) { if(p->data>q->data) swap(p->data,q->data); } } } /* for(int i=0;i<m;i++) { for(node*p = a[i];p;p=p->next) { printf("%d ",p->data); } printf("\n"); }*/ queue<int>q; q.push(t); vis[t] = 1; while(!q.empty()) { int h = q.front(); ans[top++] = q.front(); q.pop(); for(node*p = a[h];p;p=p->next) { if(vis[p->data]==0) { vis[p->data] = 1; q.push(p->data); } } } } int main() { int n,v,u; cin>>n; while(n--) { cin>>k>>m>>t; memset(a,0,sizeof(a)); memset(vis,0,sizeof(vis)); for(int i=1;i<=m;i++) { scanf("%d%d",&v,&u); add(v,u); add(u,v); } /*for(int i=0;i<m;i++) { for(node*p = a[i];p;p=p->next) { printf("%d ",p->data); } printf("\n"); }*/ top = 0; bfs(t,k); for(int i=0;i<k;i++) { printf("%d",ans[i]); if(i!=k-1) printf(" "); else printf("\n"); } } return 0; } /*************************************************** User name: jk160505徐紅博 Result: Accepted Take time: 0ms Take Memory: 2024KB Submit time: 2017-02-15 15:15:16 ****************************************************/