-
Notifications
You must be signed in to change notification settings - Fork 0
/
Duong_di.cpp
78 lines (76 loc) · 1.33 KB
/
Duong_di.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include<bits/stdc++.h>
using namespace std;
int n , m , s , t;
vector<int> adj[10000] ;
bool visited[10000] ;
int parent[10000] ;
void Create(){
cin >>n >> m ;
for(int i = 1 ; i <= m; ++i){
int x , y ;
cin >> x >> y ;
adj[x].push_back(y) ;
adj[y].push_back(x) ;
}
cin >> s >> t ;
}
void DFS(int u){
visited[u] = true ;
for(int x : adj[u]){
if(!visited[x]){
parent[x] = u ;
DFS(x) ;
}
}
}
void BFS(int u){
queue<int> q ;
q.push(u) ;
visited[u] = true ;
while(!q.empty()){
int v = q.front(); q.pop();
for(int x : adj[v]){
if(!visited[x]){
visited[x] = true ;
q.push(v) ;
parent[x] = v ;
}
}
}
}
void Path(int s , int t){
memset(parent, 0, sizeof(parent)) ;
memset(visited , false , sizeof(visited) ) ;
DFS(s) ;
if(!visited[t]){
cout << "khong co duong di " ;
}
else{
vector<int> path ;
// truy vet
// bat dau tu dinh t ;
while(t != s){
path.push_back(t) ;
t = parent[t] ;
}
path.push_back(s) ;
reverse(path.begin(), path.end()) ;
for(int x : path){
cout << x << " " ;
}
}
}
// 10 8
// 1 2
// 2 3
// 2 4
// 3 6
// 3 7
// 6 7
// 5 8
// 8 9
int main(){
Create() ;
Path(s,t) ;
return 0 ;
}