[操作系统]实现单处理机下的进程调度程序

problem

实验内容:

编写一个单处理机下的进程调度程序,模拟操作系统对进程的调度。

要求:

能够创建指定数量的进程,每个进程由一个进程控制块表示。
实现先来先服务调度算法:进程到达时间可由进程创建时间表示。
实现短作业优先调度算法:可指定进程要求的运行时间。(说明:对不可剥夺的短作业优先算法,当作业运行时间相等时,优先调度进程号小的进程执行;对可剥夺式的短作业优先算法,即选最短剩余时间的进程进行运行,在剩余时间相同的情况下,选择到达时间早的进程进行运行)

实现时间片轮转调度算法:可指定生成时间片大小。(说明:新进程到来时插入到就绪队列的队尾,当进程P运行完一个时间片时,若同时有进程Q到达,则先在就绪队列队尾插入新到达的进程Q,之后再插入进程P)

实现动态优先级调度算法:可指定进程的初始优先级(优先级与优先数成反比,优先级最高为0),优先级改变遵循下列原则:进程在就绪队列中每停留一个时间片,优先级加1,进程每运行一个时间片,优先级减3。(说明:本算法在优先级相同的情况下,选择到达时间早的进程进行运行)

测试用例格式如下:

输入:调度算法

进程号/到达时间/运行时间/优先级/时间片

输出:调度顺序/进程号/开始运行时间/结束运行时间/优先级

其中调度算法选项为:1----先来先服务,2----短作业优先,3----最短剩余时间优先,4----时间片轮转,5----动态优先级

测试用例

测试输入 期待的输出
1
1/0/24/1/1
2/0/3/1/1
3/0/3/1/1
1/1/0/24/1
2/2/24/27/1
3/3/27/30/1
2
1/0/7/1/1
2/2/4/1/1
3/4/1/1/1
4/5/4/1/1
1/1/0/7/1
2/3/7/8/1
3/2/8/12/1
4/4/12/16/1
3
1/0/7/1/1
2/2/4/1/1
3/4/1/1/1
4/5/4/1/1
1/1/0/2/1
2/2/2/4/1
3/3/4/5/1
4/2/5/7/1
5/4/7/11/1
6/1/11/16/1
4
1/0/53/1/20
2/0/17/1/20
3/0/68/1/20
4/0/24/1/20
1/1/0/20/1
2/2/20/37/1
3/3/37/57/1
4/4/57/77/1
5/1/77/97/1
6/3/97/117/1
7/4/117/121/1
8/1/121/134/1
9/3/134/154/1
10/3/154/162/1
5
1/0/3/1/2
2/0/4/1/2
3/0/2/3/2
4/2/1/1/2
5/2/4/4/2
1/1/0/2/4
2/2/2/4/3
3/4/4/5/3
4/3/5/7/3
5/1/7/8/4
6/2/8/10/3
7/5/10/12/3
8/5/12/14/6

ac code

# -*- coding: utf-8 -*-:
import Queue
class Thread:
    id,arrive, cost, priority, time, done  = 0, 0, 0, 0, 0, False
    def __init__(self, param):
        self.id = param[0]
        self.arrive = param[1]
        self.cost = param[2]
        self.priority = param[3]
        self.time = param[4]

def inputThread():
    threads,num = [], 0
    while True:
        try:
            threads.append(Thread(raw_input().split("/")))
            num += 1
        except:
            break
    return threads, num
def output(logidx, tid, tstart, tend, tpriority):
    print str(logidx) + '/' + str(tid) + '/' + str(tstart) + '/' + str(tend) + '/' + str(tpriority)
def cmp_arrive_id(x, y):
    if int(x.arrive) == int(y.arrive):
        return int(x.id) - int(y.id)
    return int(x.arrive) - int(y.arrive)
def cmp_cost_id(x, y):
    if int(x.cost) == int(y.cost):
        return int(x.id) - int(y.id)
    return int(x.cost) - int(y.cost)
def cmp_arrive_cost_id(x, y):
    if int(x.arrive) == int(y.arrive):
        if int(x.cost) == int(y.cost):
            return int(x.id) - int(y.id)
        return int(x.cost) - int(y.cost)
    return int(x.arrive) - int(y.arrive)
def fcfs():
    threads, num = inputThread()
    threads.sort(cmp_arrive_id)
    time,idx  = 0, 1
    for ech in threads:
        if time < int(ech.arrive):
            time = int(ech.arrive)
        endtime = time + int(ech.cost)
        output(idx, ech.id, time, endtime, ech.priority)
        time, idx = endtime, idx + 1

def sjf():
    threads, num = inputThread()
    threads.sort(cmp_arrive_cost_id)
    time, m, idx = int(threads[0].arrive), 0, 1
    while m < num:
        thds = [fl for fl in threads if int(fl.arrive) <= time and not bool(fl.done)]
        if len(thds) == 0:
            tmp = [fl for fl in threads if not bool(fl.done)]
            tmp.sort(cmp_arrive_id)
            time = int(tmp[0].arrive)
            continue
        thds.sort(cmp_cost_id)
        cur = thds[0]
        output(idx, cur.id, time, time + int(cur.cost), cur.priority)
        time,thds[0].done, m, idx = time + int(cur.cost), True, m + 1, idx + 1

def rr():
    threads, num = inputThread()
    threads.sort(cmp_arrive_id)
    tq = Queue.Queue()
    time, idx, m, i = int(threads[0].arrive), 1, 0, 0
    while m < num:
        if tq.empty():
            time = int(threads[i].arrive)
            while i < num and int(threads[i].arrive) <= time:
                tq.put(threads[i])
                i += 1
        ech = tq.get()
        if int(ech.time) < int(ech.cost):
            output(idx, ech.id, time, time + int(ech.time), ech.priority)
            idx, time = idx + 1, time + int(ech.time)
            ech.cost = int(ech.cost) - int(ech.time)
            while i < num and int(threads[i].arrive) <= time:
                tq.put(threads[i])
                i += 1
            tq.put(ech)
            continue
        output(idx, ech.id, time, time + int(ech.cost), ech.priority)
        idx += 1
        ech.done = True
        time = time + int(ech.cost)
        while i < num and int(threads[i].arrive) <= time:
            tq.put(threads[i])
            i += 1
        m += 1

        # 最短剩余时间优先


def srt():
    threads, num = inputThread()
    threads.sort(cmp_arrive_cost_id)
    threads.append(Thread([0, 0, 0, 0, 0]))

    time = int(threads[0].arrive)

    execi = -1
    start = time
    m = 0
    idx = 1
    i = 0
    while m < num:
        while int(threads[i].arrive) <= time and i < num:
            i += 1

        min = 99999999999999999999999999999999999999999999
        mini = -1
        j = 0
        for j in range(i):
            if int(threads[j].cost) < min and not bool(threads[j].done):
                min = int(threads[j].cost)
                mini = j

        if mini == -1:
            time = int(threads[i].arrive)
            continue
        if execi == -1:
            execi = mini
            start = int(threads[execi].arrive)
            if int(threads[execi].arrive) < time:
                start = time

        if int(threads[mini].cost) < int(threads[execi].cost):
            output(idx, threads[execi].id, start, time, threads[execi].priority)
            idx += 1
            execi = mini
            start = time

        runnable = int(threads[i].arrive) - time

        if runnable >= int(threads[execi].cost) or runnable <= 0:
            time += int(threads[execi].cost)
            output(idx, threads[execi].id, start, time, threads[execi].priority)
            idx += 1
            threads[execi].cost = 0
            threads[execi].done = True
            m += 1
            execi = -1
            start = time
        else:
            time += runnable
            threads[execi].cost = int(threads[execi].cost) - runnable

def dp():
    threads, num = inputThread()
    threads.sort(cmp_arrive_id)
    time,last, m, idx = int(threads[0].arrive), int(threads[0].arrive), 0, 1
    while m < num:
        i = 0
        while i < num and int(threads[i].arrive) <= time:
            if last < int(threads[i].arrive) < time:
                if int(threads[i].priority) > 1:
                    threads[i].priority = int(threads[i].priority) - 1
                else:
                    threads[i].priority = 0
            i += 1
        min, mini = 99999999999999999999, -1
        for j in range(i):
            if int(threads[j].priority) < min and not bool(threads[j].done):
                min, mini = int(threads[j].priority), j
        if mini == -1:
            time = int(threads[i].arrive)
            continue
        last = time
        if int(threads[mini].cost) <= int(threads[mini].time):
            output(idx, threads[mini].id, time, time + int(threads[mini].cost), int(threads[mini].priority) + 3)
            idx, m, time, threads[mini].done = idx + 1, m + 1, time + int(threads[mini].cost), True
        else:
            output(idx, threads[mini].id, time, time + int(threads[mini].time), int(threads[mini].priority) + 3)
            idx, time, threads[mini].cost = idx + 1, time + int(threads[mini].time), int(threads[mini].cost) - int(threads[mini].time)
        for j in range(i):
            if not bool(threads[j].done):
                if j == mini:
                    threads[j].priority = int(threads[j].priority) + 3
                else:
                    if int(threads[j].priority) > 1:
                        threads[j].priority = int(threads[j].priority) - 1
                    else:
                        threads[j].priority = 0

if __name__ == '__main__':
    method = input()
    if method == 1:
        fcfs()
    elif method == 2:
        sjf()
    elif method == 3:
        srt()
    elif method == 4:
        rr()
    elif method == 5:
        dp()
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351

推荐阅读更多精彩内容