-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
346 lines (269 loc) · 5.69 KB
/
main.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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
/* ALPEREN TÜRKÖZ - 171601037 */
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <time.h>
#define MAX_NONCE 15
#define HOT_PATATO_USER_COUNT 5
void siralamaEkrani();
void sicakPatatesEkrani();
const char* Names[] = {
"Nick Mason",
"Rick Wright",
"Roger Waters",
"David Gilmour",
"Syd Barret"
};
/* utilities */
void clear(){
system("@cls||clear");
}
int randRange(int min,int max){
srand(time(NULL));
return rand() % (max + 1 - min) + min;
}
/**/
void mainMenu(){
short int selection;
do
{
printf("|--- SECIMINIZI YAPIN ---|\n");
printf("| Siralama icin: [1]|\n");
printf("| Sicak Patates icin: [2]|\n");
printf("| Cikis yapmak icin: [3]|\n\n");
printf("Secim bekleniyor:");
scanf("%d", &selection);
clear();
if (selection == 1)
{
siralamaEkrani();
break;
}
else if (selection == 2)
{
sicakPatatesEkrani();
break;
}
} while (selection != 3);
}
void askMainMenu(){
int choose;
printf("\n\n>> Ana menuye donmek istiyor musunuz? (1/0): ");
scanf("%d",&choose);
if(choose){
clear();
mainMenu();
}
}
char progress(int x){
char *a = "\\/_|";
return (char) a[x];
}
/* Siralama Ekrani icin: */
struct Stack
{
int count;
struct Node *top;
};
struct Queue
{
int count;
struct Node *front;
struct Node *rear;
};
struct Node
{
int value;
struct Node *next;
};
typedef struct Node *NODE_POINTER;
typedef struct Stack *STACK_POINTER;
typedef struct Queue *QUEUE_POINTER;
NODE_POINTER createNode()
{
return (NODE_POINTER)malloc(sizeof(struct Node));
}
QUEUE_POINTER createQueue(){
QUEUE_POINTER newQueue = (QUEUE_POINTER)malloc(sizeof(struct Queue));
newQueue->front = NULL;
newQueue->rear = NULL;
newQueue->count = 0;
return newQueue;
}
STACK_POINTER createStack(){
STACK_POINTER newStack = (STACK_POINTER)malloc(sizeof(struct Stack));
newStack->count = 0;
return newStack;
}
void pushStack(STACK_POINTER stack, int value){
NODE_POINTER newNode = createNode();
newNode->value = value;
newNode->next = stack->top;
stack->top = newNode;
stack->count++;
}
void pushQueue(QUEUE_POINTER queue,int value){
NODE_POINTER newNode = createNode();
if(queue->front == NULL){
queue->front = newNode;
}else{
queue->rear->next = newNode;
}
newNode->value = value;
newNode->next = queue->front;
queue->rear = newNode;
queue->count++;
}
void printStack(STACK_POINTER stack){
NODE_POINTER top = stack->top;
for (int i = 0; i < stack->count; i++)
{
printf(" %d ", top->value);
top = top->next;
}
}
int popStack(STACK_POINTER stack){
NODE_POINTER top = stack->top;
int value = top->value;
if (stack->count == 0)
{
return -1;
}
stack->count--;
stack->top = top->next;
return value;
}
int popQueue(QUEUE_POINTER queue){
if(queue->front == NULL){
exit(1);
}
int value;
if(queue->front == queue->rear){
value = queue->front->value;
queue->front = queue->rear = NULL;
}else{
NODE_POINTER temp = queue->front;
value = temp->value;
queue->front = temp->next;
queue->rear->next = queue->front;
}
queue->count--;
return value;
}
void showStack(STACK_POINTER stack, char *name){
printf("|[%s]: ", name);
if (stack->count == 0)
{
printf("[STACK BOS]");
}
NODE_POINTER top = stack->top;
for (int i = 0; i < stack->count; i++)
{
printf(" %d ", top->value);
top = top->next;
}
printf("|\n");
}
void showQueue(QUEUE_POINTER queue){
printf("| KUYRUK:");
NODE_POINTER temp = queue->front;
while(temp->next != queue->front){
printf(" %s ",Names[temp->value]);
temp = temp->next;
}
printf(" %s ", Names[temp->value]);
printf(" |");
}
STACK_POINTER AStack;
STACK_POINTER BStack;
void siralamaEkrani(){
AStack = createStack();
BStack = createStack();
int nonce = 0;
while (nonce != MAX_NONCE)
{
showStack(AStack, "A");
showStack(BStack, "B");
int number;
printf("[%d] Bir sayi girin:", (nonce + 1));
scanf("%d", &number);
int lastInsert = AStack->top->value;
while(number > lastInsert && AStack->count != 0){
pushStack(BStack,lastInsert);
popStack(AStack);
lastInsert = AStack->top->value;
}
pushStack(AStack,number);
while(BStack->count != 0){
pushStack(AStack,popStack(BStack));
}
// push(AStack, number);
nonce++;
if (nonce != MAX_NONCE)
{
clear();
}
}
clear();
showStack(AStack, "A");
showStack(BStack, "B");
printf("Siralamayi buyukten kucuge olarak degistirmek istiyor musunuz? (1/0):");
int secim;
scanf("%d", &secim);
if (secim == 1)
{
showStack(AStack, "KUCUKTEN BUYUGE");
int value = popStack(AStack);
while (value != -1)
{
pushStack(BStack, value);
value = popStack(AStack);
}
showStack(BStack, "BUYUKTEN KUCUGE");
}
askMainMenu();
}
/* Program */
QUEUE_POINTER Users;
void sicakPatatesEkrani()
{
Users = createQueue();
for(int i = 0; i < HOT_PATATO_USER_COUNT; i++){
pushQueue(Users,i);
}
showQueue(Users);
//int loop = 1;
int gameDuration = randRange(10,25);
int seconds = 1;
int keepDuration = randRange(1,3);
while(1){
clear();
showQueue(Users);
printf("\n| PATATES : %s |", Names[Users->front->value]);
printf(" SIRADAKI: %s |\n", Names[Users->front->next->value]);
printf("|[%c] MUZIK SURESI: %d | ELDE TUTMA SURESI: %d | GECEN SURE: %d |",progress(time(NULL) % 4),gameDuration,keepDuration, (seconds+1));
if(seconds % keepDuration == 0){
keepDuration = randRange(1,3);
int popped = popQueue(Users);
pushQueue(Users,popped);
}
Sleep(1000);
seconds += 1;
if(gameDuration == seconds){
printf("| YANAN KISI: %s |\n",Names[Users->front->value]);
popQueue(Users);
if(Users->count == 1){
break;
}
Sleep(2000);
seconds = 0;
int gameDuration = randRange(10,25);
}
}
askMainMenu();
}
int main(int argc, char *argv[])
{
mainMenu();
return 0;
}