-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule1_fortemplate2.h
160 lines (134 loc) · 3.86 KB
/
module1_fortemplate2.h
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
//only for undirectedgraph
#include<stack>
void dfs(Graph G)
{
int visit[G.vertex_count+1]={0};
stack<int> stack;
for(int i=1;i<=G.vertex_count;i++)
{
if(visit[i]!=1)
{
stack.push(i);
while(!stack.empty())
{
int s=stack.top();
stack.pop();
if(visit[s]==0)
{
cout<<" "<<s<<" ";
visit[s]=1;
}
struct edgelist *temp=G.edges[s];
while(temp!=NULL)
{
int k=temp->value;
if(visit[k]==0)
stack.push(k);
temp=temp->next;
}
}
}
}
}
void dfs(Graph G,int start)
{
int visit[G.vertex_count+1]={0};
stack<int> stack;
for(int i=start;i!=start-1;i=(i+1)%G.vertex_count)
{
if(visit[i]!=1)
{
stack.push(i);
while(!stack.empty())
{
int s=stack.top();
stack.pop();
if(visit[s]==0)
{
if(s!=0)
{
cout<<" "<<s<<" ";
visit[s]=1;
}
}
struct edgelist *temp=G.edges[s];
while(temp!=NULL)
{
int k=temp->value;
if(visit[k]==0)
stack.push(k);
temp=temp->next;
}
}
}
}
}
void dfs(Graph G,int start,int end)
{
int visit[G.vertex_count+1]={0};
stack<int> stack;
int i=start;
int inpath[G.vertex_count+1];
int l=0;
int flag=0;
stack.push(i);
while(!stack.empty())
{
int s=stack.top();
stack.pop();
if(visit[s]==0)
{
if(s!=0)
{
inpath[l++]=s;
visit[s]=1;
}
}
struct edgelist *temp=G.edges[s];
while(temp!=NULL)
{
int k=temp->value;
if(visit[k]==0)
stack.push(k);
temp=temp->next;
}
}
for(int k=0;k<l;k++)
if(inpath[k]==end)
flag=1;
if(flag==0)
cout<<endl<<end<<" not reachable from "<<start<<endl;
else
{
cout<<endl<<end<<" reachable from "<<start<<endl<<"path :";
for(int k=0;k<l;k++)
{
cout<<" "<<inpath[k]<<" ";
if(inpath[k]==end)
break;
}
}
}
/*
void dfs(Graph G,int start)
{
int visit[G.vertices+1]={0};
stack<vertex> stack;
stack.push(G.Graph[start]);
while(!stack.empty())
{
vertex s=stack.top();
stack.pop();
if(visit[s.data]==0)
{
cout<<" "<<s.data<<" ";
visit[s.data]=1;
}
for(auto k:s.edges)
{
if(visit[k]==0)
stack.push(G.Graph[k]);
}
}
}
*/