联系QQ:928900200 CSCI 3120 Operating Systems Summer 2014 Handout 3Assignment 2Date Due: June 5, 2014 by 9:00 pm electronically in the SVN directoryhttps://svn.cs.dal.ca/3120/<your id>/a2 where <your id> is your bluenose username.Problem 1(5 mark
一个OS的作业, 用于模拟短作业优先 和 先来先服务两种作业调度方式. #!/usr/bin/python3.5 ## Modify the SJF and FCFS algorithm in the topic of dealing with jobs. job_num = 5 class Job(): # 定义作业 def __init__(self, arr_time=-1, sev_time=-1, cpt_time=-1, wghted_run_time=-1): self.arr_t