-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.cpp
677 lines (333 loc) · 7.05 KB
/
index.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
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
#include<stdio.h>
#include<stdlib.h>
#define Ready 0
#define Running 1
#define Block 3
#define Over 4
typedef struct PCBNode
{
int ID;
int Priority;
int CPUtime;
int Alltime;
int Arrivetime;
int state;
int counter;
struct PCBNode *next;
}PCB;//定义数据结构
PCB *run;
PCB *ready;
PCB *over;
PCB *head;
//定义状态量
int Min(PCB *head)//挑选出队列中的拥有最小alltime 值的块,返回块号,用于sjf算法
{
PCB *p;//q用来记录这个块的地址
int min,id;//记录最小值和块号
p=head->next;
if(p)
{
min=p->Alltime;
id=p->ID;
while(p->next)
{
if(min>p->next->Alltime)
{
min=p->next->Alltime;
id=p->next->ID;
p=p->next;
}
else
{
p=p->next;
}
}
}
return id;
}
int Max(PCB *head)//挑选出队列中的拥有最大优先级的块,返回块号,用于prio算法
{
PCB *p;//q用来记录这个块的地址
int max,id;//记录最大和块号
p=head->next;
if(p)
{
max=p->Priority;
id=p->ID;
while(p->next)
{
if(max<=p->next->Priority)
{
max=p->next->Priority;
id=p->next->ID;
p=p->next;
}
else
{
p=p->next;
}
}
}
return id;
}
PCB *CreatPCB(int n)
{
int i;
PCB *p,*q;
head=(PCB*)malloc(sizeof(PCB));
head->next=NULL;
p=head;
for(i=1;i<=n;i++)
{
q=(PCB*)malloc(sizeof(PCB));
q->ID=i;
q->CPUtime=0;
q->Alltime=rand()%200;
q->Priority=rand()%10;
q->state=Ready;
q->Arrivetime=0;
p->next=q;
p=q;
q->next=NULL;
}
head->next->Priority=0;
return head;
}//创建pcb块
void Display(PCB *head)
{
PCB *p;
p=head->next;
printf("ID Arrivetime CPUtime(已占用) Alltime Priority state \n");
while(p)
{
printf("%d ",p->ID);
printf("%d ",p->Arrivetime);
printf("%d ",p->CPUtime);
printf("%d ",p->Alltime);
printf("%d ",p->Priority);
printf("%d \n",p->state);
p=p->next;
}
}//显示PCB块
void FCFS(PCB *head,PCB *over)
{
PCB *p,*q;
int j=0;
int n=0,s=0;
double m;
ready=head;
p=ready->next;
q=over;
while(p)
{
p->state=Running;
ready->next=p->next;
n=p->Alltime+n;
p->CPUtime=p->Alltime;
p->Alltime=0;
s=s+n;
p->next=NULL;
q->next=p;
p->state=Over;
q=q->next;
q->next=NULL;
p=head->next;
j++;
printf("第%d次执行算法后的就绪队列:\n",j);
Display(head);
}
m=(double)s/j;
printf("完成顺寻为:\n");
Display(over);
printf("\n");
printf("每个进程等待的平均时间为:%lf\n",m);
printf("所有进程等待的总时间为:%d",s);
}
void SJF(PCB *head,PCB *over)//sjf算法
{
PCB *p,*q,*b,*o;//b 用来记录该块的地址
int s;//记录块号
int m,n,h=0,d=0,j=0;
double f;
p=head->next;
q=over;
o=head;
printf("完成顺寻为:\n");
m=p->ID;
n=p->Alltime;
s=Min(head);
b=p->next;
printf("%d:\n",s);
while(head->next)
{
while(s!=p->ID)
{
o=p;
p=p->next;
}
d=p->Alltime+d;
p->CPUtime=p->Alltime;
p->Alltime=0;
h=d+h;
b=p;
q->next=b;
o->next=p->next;
p=head->next;
b->next=NULL;
o=head;
q=q->next;
s=Min(head);
j++;
printf("第%d次执行算法后的就绪队列:\n",j);
Display(head);
}
f=(double)h/j;
printf("完成顺寻为:\n");
Display(over);
printf("每个进程等待的平均时间为:%lf\n",f);
printf("所有进程等待的总时间为:%d",h);
}
void Prio(PCB *head,PCB *over)
{
PCB *p,*q,*b,*o;//b 用来记录该块的地址
int s;//记录块号
int m,n,h=0,d=0,j=0;
double f;
p=head->next;
o=head;
q=over;
printf("当前拥有最大优先级的块号为:\n");
m=p->ID;
n=p->Alltime;
s=Max(head);
b=p->next;
printf("%d:\n",s);
while(head->next)
{
while(s!=p->ID)
{
o=p;
p=p->next;
}
d=p->Alltime+d;
p->CPUtime=p->Alltime;
p->Alltime=0;
h=d+h;
b=p;
q->next=b;
o->next=p->next;
p=head->next;
b->next=NULL;
o=head;
q=q->next;
s=Max(head);
j++;
printf("第%d次执行算法后的就绪队列:\n",j);
Display(head);
}
f=(double)h/j;
printf("完成顺寻为:\n");
Display(over);
printf("每个进程等待的平均时间为%lf\n",f);
printf("所有进程等待的总时间为:%d",h);
}
void RR(PCB *head,PCB *over,int t,int k)//时间片轮转法
{ //k用来记录剩余要执行的进程数目
PCB *p,*q,*r,*o,*tail;//o用来记录当前块的地址
int n=0,s=0,f;
double h;
f=k;
p=head->next;
while(p->next)
{
tail=p;
p=p->next;
}
printf("执行顺序为:\n");
tail=p;
o=p;//前驱
tail->next=head->next;
p=head->next;
q=over;
while(k>0)
{
r=head->next;
if(p->Alltime>t)//该进程还未执行完成
{
p->Alltime=p->Alltime-t;
n=n+t;
s=s+n;
o=p;
printf("执行进程%d ",p->ID);
printf("该进程的Alltime变为%d\n",p->Alltime);
p=p->next;
}
else//该进程可以完成了
{
printf(" 完成进程:%d \n",p->ID);
n=n+p->Alltime;
s=s+n;
p->Alltime=0;
o->next=p->next;
q->next=p;
q=q->next;
q->next=NULL;
p=o->next;
k--;
}
}
h=(double)s/f;
printf("完成顺寻为:\n");
Display(over);
printf("每个进程等待的平均时间为:%lf\n",h);
printf("所有进程等待的总时间为:%d",s);
}
int main(void)
{
int n,m,t;
printf("|------------------------------------------------------------------------------|");
printf("| 进 程 调 度 的 模 拟 |");
printf("|------------------------------------------------------------------------------|");
printf("\t\t\t|----选项--------------------|\n");
printf("\t\t\t| 1. FCFS调度法 |\n");
printf("\t\t\t|----------------------------|\n");
printf("\t\t\t| 2. SJF调度算法 |\n");
printf("\t\t\t|----------------------------|\n");
printf("\t\t\t| 3. 优先调度算法 |\n");
printf("\t\t\t|----------------------------|\n");
printf("\t\t\t| 4. RR调度算法 |\n");
printf("\t\t\t|----------------------------|\n");
printf("\n");
printf("请输入要创建的进程数目:");
scanf("%d",&n);
head=CreatPCB(n);
printf("创建的就绪队列为:\n");
Display(head);
printf("请选择要调度的算法:");
scanf("%d",&m);
over=(PCB*)malloc(sizeof(PCB));
over->next=NULL;
switch(m)
{
case 1:
system("CLS");
FCFS(head,over);
break;
case 2:
system("CLS");
SJF(head,over);
break;
case 3:
system("CLS");
Prio(head,over);
break;
case 4:
system("CLS");
printf("请输入时间片的大小:");
scanf("%d",&t);
RR(head,over,t,n);
break;
}
//Release(head);
return 0;
}