-
Notifications
You must be signed in to change notification settings - Fork 0
/
dt_graph_path.c
227 lines (198 loc) · 6.74 KB
/
dt_graph_path.c
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#include <stdio.h>
#include <stdlib.h>
#define V 7
#define initial 0
#define visited 1
struct n {
int index;
int dist;
struct n * next;
};
typedef struct n node;
node *heads[V];//köşeler için linked list arrayi
void addEdge(node *head, int dest, int dist) {//kenar ekleme
node *iter = head;
while (iter->next != NULL) {//köşenin komşu listesinde sona git
iter = iter->next;
}
iter->next = (node*)malloc(sizeof(node));
iter->next->next = NULL;
iter->next->index = dest;//indeks atama
iter->next->dist= dist;//uzaklık atama
}
void printEdges() {//köşe-kenar ilişkilerini yazdırma
for (int i = 0; i <V ; i++) {
node *iter = heads[i];
printf("%d-->", iter->index);
while (iter->next !=NULL) {
printf("%d-%d,", iter->next->index, iter->next->dist);
iter = iter->next;
}
printf("\n");
}
}
void createGraph() {
for (int i = 0; i<V ; ++i) {//heads arrayine köşeleri ekleme
heads[i] = (node*)malloc(sizeof(node));
heads[i]->index = i;
heads[i]->next = NULL;
}
//kenar indeks ve uzaklık bilgilerini
//heads arrayindeki linked listlere göre ekleme işlemleri
addEdge(heads[0],1,1845);
addEdge(heads[0],5,1264);
addEdge(heads[1],3,7815);
addEdge(heads[2],3,1303);
addEdge(heads[2],5,8132);
addEdge(heads[2],6,11550);
addEdge(heads[3],4,5782);
addEdge(heads[3],6,10838);
addEdge(heads[4],2,4616);
addEdge(heads[5],3,9566);
addEdge(heads[6],5,5567);
printEdges();
}
int pop(node* root) {//yığından en üstteki elemanı silme
if(root == NULL) {
printf("stack is empty");
return -1;
}
if(root->next == NULL) {
int rvalue = root->index;
free(root);
return rvalue;
}
node* iter = root;
while (iter->next->next != NULL) {
iter = iter->next;
}
node* temp = iter->next;
int rvalue = temp->index;
iter->next = NULL;
free(temp);
return rvalue;
}
node* push(node *root,int a) {//yığına eleman push etme
if(root == NULL) {//Stack boşsa
root= (node*)malloc(sizeof(node));
root->index = a;
root->next = NULL;
return root;
}
// stack boş değilse
node* iter = root;
while (iter->next !=NULL) {//stack in son elemanını bul
iter = iter->next;
}
//temp değişkenine veriyi atayıp tempi stacke push et
node* temp = (node*)malloc(sizeof(node));
temp->index = a;
temp->next = NULL;
iter->next = temp;
return root;
}
node* top(node *stack) {//yığında en üstteki elemanı bulma
node *iter = stack;
while (iter->next!=NULL) {
iter = iter->next;
}
return iter;
}
int isAllVisited(int state[]) {//tüm köşeler ziyaret edildiyse 1 dön
for (int i = 0; i <V ; ++i) {
if(state[i] == initial)
return 0;
}
return 1;
}
node* findPath(int src, int dest) {//Yol bulma fonksiyonu
node *stack = NULL;
stack = push(stack, src);//kaynağı yığına ekleme
if (src == dest) {//kaynak ile hedef aynı ise yığını dön
return stack;
}
int state[V];//Köşelerin ziyaret edilme arrayi
for (int i = 0; i <V ; ++i) {
state[i] = initial;
}
state[src] = visited;
int tempSrc = src;//kaynağı gösteren geçici değişken
while (!isAllVisited(state)) {//tüm köşeler ziyaret edilmediği sürece döngü çalışsın
node *iter = heads[src];//şuanki bulunan indeksi gösteren head pointerı
while (state[iter->next->index] == visited) {//ziyaret edilmeyen komşu köşeyi bulma
if(iter->next->next==NULL)
break;
else
iter = iter->next;
}
if(state[iter->next->index]==initial){//komşu köşe ziyaret edilmemişse
src = iter->next->index; //aktif bulunulan köşeyi güncelle
stack = push(stack, src); //bulunulan köşeyi yığına ekle
state[src] = visited; //eski köşeyi ziyaret edilmiş işaretle
}
else{//komşu köşe ziyaret edilmişse yığının tepesindeki elemanı sil ve geri dön
pop(stack);
src=top(stack)->index;
}
//varış yeri bulunmuşsa ya da olası tüm ihtimaller denenmişse döngüyü sonlandır
if (src == dest || (src == tempSrc && iter->next->next == NULL))
return stack;
}
return stack;
}
int totalDist(node* path) {//Yolu gösteren yığın içinde gezerek toplam uzaklığı bulma
node* iter = path;
int dist = 0;
while (iter->next!=NULL) {
node* iter2 = heads[iter->index];
while (iter2->next->index != iter->next->index) {
iter2 = iter2->next;
}
dist = dist + iter2->next->dist;
iter = iter->next;
}
return dist;
}
void printPath(node* path, int src, int dest, char cities[7][8]) {// Yolu ve uzaklığı yazdırma
int distance = 0;
if(path->next == NULL) {//path yığınında sadece kaynak varsa
if(src == dest)
printf("Source And Destination Are Same\nTotal distance is %d", distance);
else
printf("There Is No Path");
}
else {
printf("Path Found: ");
node *iter = path;
while (iter!= NULL) {//yazdırma işlemleri
for (int i = 0; i<8; ++i) {
if (cities[iter->index][i]!='\0')
printf("%c", cities[iter->index][i]);
}
printf(", ");
iter = iter->next;
}
distance = totalDist(path);//Fonksiyonu ile toplam yolu hesaplama
printf("\nTotal distance is %d", distance);
}
}
int main() {
createGraph();//Graf köşeleri ve kenarları oluşturma fonksiyonu
char cities[7][8] = {"Prague", "Helsinki", "Beijing", "Tokyo", "Jakarta", "London", "New York"};//İndeksere göre şehirler
int src, dest;//kaynak ve hedef için değişkenler
printf("\n\nCities of the graph:");
printf("\nPrague = 0\nHelsinki = 1\nBeijing = 2\nTokyo = 3\nJakarta = 4\nLondon = 5\nNew York = 6\n\n");
printf("1 - Enter the number of the first city: ");
scanf("%d", &src);
printf("2 - Enter the number of the destination city: ");
scanf("%d", &dest);
printf("\n");
//Kullanıcıdan alınan değişkenler geçerliyse yolu bul ve yazdır
if(src>=0 && src<=6 && dest>=0 && dest<=6) {
node *path = findPath(src, dest);
printPath(path,src, dest,cities);
}
else
printf("Unvalid Inputs! TRY AGAIN\n");
return 0;
}