-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoschedulealg.cpp
441 lines (426 loc) · 16.2 KB
/
autoschedulealg.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
#include "autoschedulealg.h"
#include<QDebug>
#include <QList>
AutoScheduleAlg::AutoScheduleAlg()
{
}
void AutoScheduleAlg::course_arranging_base()
{
//扫描每一个课程进行排课
qDebug()<<"cp_num="<<cp_num<<"cp[i].cla_num="<<cp[0].cla_num ;
qDebug()<<"cla[j]="<<cla[0].first<<cla[0].last;
qDebug()<<"-------------------------------------";
// for(int i=1;i<=cp_num;i++)
// {
// qDebug()<<cp[i].cla_num;
// for(int j=0;j<all_class;++j)
// {
// qDebug()<<"cp[i].cla[j]="<<cp[i].cla[j];
// }
// }
for(int i = 0; i < cp_num; i++)
{
qDebug()<<"课程:"<<i;
qDebug()<<cp[i].hour<<cp[i].CPID<<cp[i].tea_id<<cp[i].cla_num;
}
qDebug()<<"-------------------------------------";
for (int i = 1; i <= cp_num; i++)
{
int flag = 0;//0-没安排上课,1-安排上课
int is_ok = 1;
//如果只有一个班上这门课,扫描这个班的时间空隙
qDebug()<<"----cp[i].cla_num----"<<cp[i].cla_num;
if (cp[i].cla_num == 1)
{
qDebug()<<"1Class";
//扫描是哪个班上课
int j;
for (j = 1; j <= all_class; j++)
{
if (cp[i].cla[j] == 1)
break;
}
qDebug()<<j<<"class";
//如果是16课时
if (cp[i].hour == 16)
{
qDebug()<<cp[i].hour<<"hours";
for (int x = 1; x <= 5; x++)
{
for (int y = 0; y < 4; y++)
{
//如果这个班级星期X的第Y大节课是空的并且老师的课表是空的,则安排上
if (!cla[j].last[x][y]&&!tea[cp[i].tea_id- 20000].last[x][y])
{
cla[j].last[x][y] = cp[i].CPID;
tea[cp[i].tea_id - 20000].last[x][y] = cp[i].CPID;
flag = 1;
qDebug()<<"sucess";
}
if (flag)
break;
}
if (flag)
break;
}
//如果后八周没找到位置安排课程,则遍历前八周
if (!flag)
{
for (int x = 1; x <= 5; x++)
{
for (int y = 0; y < 4; y++)
{
//如果这个班级星期X的第Y大节课是空的,则安排上
if (!cla[j].first[x][y]&&!tea[cp[i].tea_id - 20000].first[x][y])
{
cla[j].first[x][y] = cp[i].CPID;
tea[cp[i].tea_id - 20000].first[x][y] = cp[i].CPID;
flag = 1;
qDebug()<<"sucess";
}
if (flag)
break;
}
if (flag)
break;
}
}
}
else if (cp[i].hour == 32)
{
for (int x = 1; x <= 5; x++)
{
for (int y = 0; y < 4; y++)
{
//如果这个班级星期X的第Y大节课是空的,则安排上
if (!cla[j].first[x][y]&&!cla[j].last[x][y] && !tea[cp[i].tea_id - 20000].first[x][y]&& !tea[cp[i].tea_id - 20000].last[x][y])
{
cla[j].first[x][y] = cp[i].CPID;
cla[j].last[x][y] = cp[i].CPID;
tea[cp[i].tea_id - 20000].first[x][y] = cp[i].CPID;
tea[cp[i].tea_id - 20000].last[x][y] = cp[i].CPID;
flag = 1;
qDebug()<<"sucess";
}
if (flag)
break;
}
if (flag)
break;
}
}
else if (cp[i].hour == 48)
{
for (int x = 1; x <= 5; x++)
{
//如果这个班级星期X的第Y大节课是空的,则安排上
if (!cla[j].first[x][4] && !cla[j].last[x][4] && !tea[cp[i].tea_id - 20000].first[x][4] && !tea[cp[i].tea_id - 20000].last[x][4])
{
cla[j].first[x][4] = cp[i].CPID;
cla[j].last[x][4] = cp[i].CPID;
tea[cp[i].tea_id - 20000].first[x][4] = cp[i].CPID;
tea[cp[i].tea_id - 20000].last[x][4] = cp[i].CPID;
flag = 1;
qDebug()<<"sucess";
}
if (flag)
break;
}
}
}
else
{
qDebug()<<"many Class";
if (cp[i].hour == 16)
{
qDebug()<<cp[i].hour<<"hours";
for (int x = 1; x <= 5; x++)
{
for (int y = 0; y < 4; y++)
{
is_ok = 1;
//如果教师这节课有空
if (!tea[cp[i].tea_id - 20000].last[x][y])
{
//判断那几个班是不是有空
for (int j = 1; j <= all_class; j++)
{
if (cp[i].cla[j] && cla[j].last[x][y])
{
is_ok = 0;
break;
}
}
//这几个班级这个时间段有空
if (is_ok)
{
for (int j = 1; j <= all_class; j++)
{
if(cp[i].cla[j])
cla[j].last[x][y] = cp[i].CPID;
qDebug()<<j<<"calsucess";
}
flag = 1;
if (flag)
break;
}
}
}
if (flag)
break;
}
if (!flag)
{
for (int x = 1; x <= 5; x++)
{
for (int y = 0; y < 4; y++)
{
is_ok = 1;
//如果教师这节课有空
if (!tea[cp[i].tea_id - 20000].first[x][y])
{
//判断那几个班是不是有空
for (int j = 1; j <= all_class; j++)
{
if (cp[i].cla[j] && cla[j].first[x][y])
{
is_ok = 0;
break;
}
}
//这几个班级这个时间段有空
if (is_ok)
{
tea[cp[i].tea_id - 20000].last[x][y] = cp[i].CPID;
tea[cp[i].tea_id - 20000].first[x][y] = cp[i].CPID;
for (int j = 1; j <= all_class; j++)
{
if (cp[i].cla[j])
cla[j].first[x][y] = cp[i].CPID;
}
flag = 1;
if (flag)
break;
}
}
}
if (flag)
break;
}
}
}
else if (cp[i].hour == 32)
{
qDebug()<<cp[i].hour<<"hours";
for (int x = 1; x <= 5; x++)
{
for (int y = 0; y < 4; y++)
{
is_ok = 1;
//如果教师这节课有空
if (!tea[cp[i].tea_id - 20000].first[x][y]&&!tea[cp[i].tea_id - 20000].last[x][y])
{
//判断那几个班是不是有空
for (int j = 1; j <= all_class; j++)
{
if (cp[i].cla[j] && (cla[j].first[x][y] || cla[j].last[x][y]))
{
is_ok = 0;
break;
}
}
//这几个班级这个时间段有空
if (is_ok)
{
tea[cp[i].tea_id - 20000].last[x][y] = cp[i].CPID;
tea[cp[i].tea_id - 20000].first[x][y] = cp[i].CPID;
for (int j = 1; j <= all_class; j++)
{
if (cp[i].cla[j])
{
cla[j].last[x][y] = cp[i].CPID;
cla[j].first[x][y] = cp[i].CPID;
}
}
flag = 1;
if (flag)
break;
}
}
}
if (flag)
break;
}
}
else if (cp[i].hour == 48)
{
qDebug()<<cp[i].hour<<"hours";
for (int x = 1; x <= 5; x++)
{
is_ok = 1;
//如果教师这节课有空
if (!tea[cp[i].tea_id - 20000].first[x][4] && !tea[cp[i].tea_id - 20000].last[x][4])
{
//判断那几个班是不是有空
for (int j = 1; j <= all_class; j++)
{
if (cp[i].cla[j] && (cla[j].first[x][4] || cla[j].last[x][4]))
{
is_ok = 0;
break;
}
}
//这几个班级这个时间段有空
if (is_ok)
{
tea[cp[i].tea_id - 20000].last[x][4] = cp[i].CPID;
tea[cp[i].tea_id - 20000].first[x][4] = cp[i].CPID;
for (int j = 1; j <= all_class; j++)
{
if (cp[i].cla[j])
{
cla[j].last[x][4] = cp[i].CPID;
cla[j].first[x][4] = cp[i].CPID;
}
}
flag = 1;
if (flag)
break;
}
}
if (flag)
break;
}
}
}
qDebug()<<"try Class";
if (!flag)
{
cout << "ERROR:有一门课排不上课。" << endl;
cout << cp[i].CPID << endl;
}
}
}
void AutoScheduleAlg::print()
{
for (int i = 1; i < all_class; i++)
{
qDebug() << QObject::tr("计科18%1的课表").arg(i);
qDebug() << "1-8周" << endl;
qDebug() << "一" << "\t" << "二" << "\t" << "三" << "\t" << "四" << "\t" << "五" << "\t" << "六" << "\t" << "日" << endl;
for (int y = 0; y < 5; y++)
{
//cout << "第" << x << "大节";
for (int x = 1; x <= 7; x++)
{
if (cla[i].first[x][y])
cout<< cla[i].first[x][y] << '\t';
else
cout << "\t";
}
cout << endl;
}
cout << endl;
qDebug() << "9-16周" << endl;
qDebug() << "一" << "\t" << "二" << "\t" << "三" << "\t" << "四" << "\t" << "五" << "\t" << "六" << "\t" << "日" << endl;
for (int y = 0; y < 5; y++)
{
//cout << "第" << x << "大节";
for (int x = 1; x <= 7; x++)
{
if (cla[i].last[x][y])
{
cout << cla[i].last[x][y]<< '\t';
// return; //测试
}
else
cout << "\t";
}
cout << endl;
}
cout << endl<<endl;
}
}
void AutoScheduleAlg::sort_course()
{
course temp;
return;
for (int i = 1; i <= cp_num; i++) {
//对待排序序列进行冒泡排序
for (int j = i + 1; j + 1 < cp_num - i; j++)
{
//相邻元素进行比较,当顺序不正确时,交换位置
if (cp[i].cla_num < cp[j].cla_num)
{
for (int x = 1; x <= all_class; x++)
temp.cla[x] = cp[i].cla[x];
temp.cla_num = cp[i].cla_num;
temp.cour_id = cp[i].cour_id;
temp.CPID = cp[i].CPID;
temp.hour = cp[i].hour;
for (int x = 1; x <= all_class; x++)
cp[i].cla[x] = cp[j].cla[x];
cp[i].cla_num = cp[j].cla_num;
cp[i].cour_id = cp[j].cour_id;
cp[i].CPID = cp[j].CPID;
cp[i].hour = cp[j].hour;
for (int x = 1; x <= all_class; x++)
cp[j].cla[x] = temp.cla[x];
cp[j].cla_num = temp.cla_num;
cp[j].cour_id = temp.cour_id;
cp[j].CPID = temp.CPID;
cp[j].hour = temp.hour;
}
}
}
}
void AutoScheduleAlg::test(QList<QList<int>> cpInfo,int classNum)
{
// ifstream myfile("C:\\Users\\17325\\Desktop\\PK2.txt");
// cp_num = 36;
cp_num=cpInfo.count();
all_class = classNum+1;
int s;
memset(cp,0,sizeof(cp));
memset(cla,0,sizeof(cla));
memset(tea,0,sizeof(tea));
qDebug()<<"获取到的数据:"<<cpInfo;
for (int i = 0; i < cp_num; i++)
{
// myfile >> cp[i].hour; //学时
// myfile >> cp[i].CPID; //CPID
// myfile >> cp[i].tea_id; //教师工号
// myfile >> cp[i].cla_num; //课程授课班级数
// myfile >> s; //选课班级代号(如123,代表计科181,计科182,计科183)
// myfile >> cp[i].cour_id; //课程id
qDebug()<<"课程:"<<i;
qDebug()<<cp[i].hour<<cp[i].CPID<<cp[i].tea_id<<cp[i].cla_num;
qDebug()<<cpInfo[i];
cp[i+1].hour=cpInfo[i][0];
cp[i+1].CPID=cpInfo[i][1];
cp[i+1].tea_id=cpInfo[i][2];
cp[i+1].cla_num=cpInfo[i][3];
s=cpInfo[i][4];
cp[i+1].cour_id=cpInfo[i][5];
// qDebug()<<"测试:"<<cp[i].hour<<cp[i].CPID<<cp[i].tea_id<<cp[i].cla_num<<s<<cp[i].cour_id;
// return;
int temp= s % 10;
while (temp)
{
cp[i+1].cla[temp] = 1;
s = s / 10;
temp = s % 10;
}
}
// for(int i = 0; i < cp_num; i++)
// {
// qDebug()<<"课程:"<<i;
// qDebug()<<cp[i].hour<<cp[i].CPID<<cp[i].tea_id<<s<<cp[i].cla_num;
// }
// sort((cp + 1), (cp + cp_num + 1), cmp);
sort_course();
//
course_arranging_base();
qDebug()<<"---------------排课完成,打印课表----------------";
print();
}