├── .idea ├── artifacts │ └── OSLab1_Scheduler_jar.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── OSLab1-Scheduler.iml ├── README.md ├── labs-2019.zip ├── out ├── artifacts │ └── OSLab1_Scheduler_jar │ │ └── OSLab1-Scheduler.jar └── production │ └── OSLab1-Scheduler │ ├── Main.class │ ├── PCB.class │ ├── Process$State.class │ ├── Process.class │ ├── Queue.class │ ├── Resource$BlockProcess.class │ └── Resource.class ├── src ├── Main.java ├── PCB.java ├── Process.java ├── Queue.java └── Resource.java ├── test ├── 0.txt ├── 1.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt ├── OSLab1-Scheduler.jar ├── README.md ├── 读取文件模式.bat └── 键盘录入模式.bat ├── 关文聪 2016060601008 计算机操作系统 实验报告.docx ├── 关文聪 2016060601008 计算机操作系统 实验报告.pdf └── 实验报告模板.docx /.idea/artifacts/OSLab1_Scheduler_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | $PROJECT_DIR$/out/artifacts/OSLab1_Scheduler_jar 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 19 | 20 | 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 | 95 | 96 | 97 | 99 | 100 | 109 | 110 | 111 | 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 |