美文网首页
[操作系统]磁盘调度

[操作系统]磁盘调度

作者: vouv | 来源:发表于2018-06-17 17:35 被阅读0次

problem

实验内容:
  编写一个磁盘调度程序,模拟操作系统对磁盘的调度。

实验目的:
本实验要求学生独立设计并实现磁盘调度模拟程序,以加深对磁盘调度特点和各种磁盘调度算法的理解。

实验要求:
  可以随机输入磁道请求序列,当前磁头位置和磁头移动方向,支持先来先服务、最短寻道时间优先、扫描、循环扫描调度算法,能够输出磁头移动经过的磁道序列。具体信息见测试用例格式说明。

测试用例格式如下:
输入:

磁盘调度算法

当前磁头位置

磁头移动方向

磁道请求序列(磁道1,磁道2,磁道3,...)

其中:

(1) 调度算法选项为:

               1----先来先服务

               2----最短寻道时间优先

               3----扫描法(SCAN)

               4----循环扫描法(C-SCAN)

(2) 磁头移动方向选项为:

1----向磁头号增大方向移动

0----向磁头号减小方向移动

输出:

磁头移动经过的磁道序列(磁道1,磁道2,磁道3)

磁头移动经过的总磁道数

测试用例

测试输入 期待的输出
1
53
1
98,183,37,122,14,124,65,67
53,98,183,37,122,14,124,65,67
640

ac code

import java.util.*;



public class Main {

    private static int method;
    private static int way;
    private static int now;
    private static int count = 0;
    private static int len;
    private static Integer[] inps;

    public static void main(String[] args) {
    // write your code here
        Scanner scanner = new Scanner(System.in);
        method = scanner.nextInt();
        now = scanner.nextInt();
        way = scanner.nextInt();
        scanner.nextLine();
        String str = scanner.nextLine();
        len = str.split(",").length;
        inps = new Integer[len];
        for (int i = 0;i < len; i++){
            inps[i] = new Integer(str.split(",")[i]);
        }
        handle();
    }

    private static void handle() {
        switch (method) {
            case 1:
                fcfs();
                break;
            case 2:
                stf();
                break;
            case 3:
                scan();
                break;
            case 4:
                cscan();
                break;
        }
    }

    private static void fcfs() {
        System.out.print(now);
        for (int i : inps) {
            count += Math.abs(i - now);
            now = i;
            System.out.print("," + now);
        }
        System.out.println();
        System.out.println(count);
    }

    private static void stf() {
        System.out.print(now);
        List<Integer> pages = getList();
        for (int i = 0 ;i < len;i++) {
            int max = Math.abs(pages.get(0) - now);
            int idx = 0;
            for(Integer ech : pages){
                if (Math.abs(ech - now) < max) {
                    max = Math.abs(ech - now);
                    idx = pages.indexOf(ech);
                }
            }
            System.out.print("," + pages.get(idx));
            count += Math.abs(now - pages.get(idx));
            now = pages.get(idx);
            pages.remove(idx);
        }
        System.out.println();
        System.out.println(count);

    }

    private static void scan() {
        System.out.print(now);
        Arrays.sort(inps);
        List<Integer> pages = getList();
        if (way == 1) {
            int idx = 0;
            for (Integer ech : pages) {
                if (ech > now) {
                    idx = pages.indexOf(ech);
                    break;
                }
            }
            for (int i = idx; i < len; i++) {
                int ech = pages.get(i);
                count += Math.abs(ech - now);
                now = ech;
                System.out.print("," + now);
            }
            if (idx != 0) {
                for (int i = idx - 1; i >= 0; i--) {
                    int ech = pages.get(i);
                    count += Math.abs(ech - now);
                    now = ech;
                    System.out.print("," + now);
                }
            }
        }else {
            int idx = 0;
            for (Integer ech : pages) {
                if (now > ech) {
                    idx = pages.indexOf(ech);
                }else {
                    break;
                }
            }
            for (int i = idx; i >= 0; i--) {
                int ech = pages.get(i);
                count += Math.abs(ech - now);
                now = ech;
                System.out.print("," + now);
            }
            if (idx != 0) {
                for (int i = idx + 1; i < len; i++) {
                    int ech = pages.get(i);
                    count += Math.abs(ech - now);
                    now = ech;
                    System.out.print("," + now);
                }
            }
        }
        System.out.println();
        System.out.println(count);
    }
    private static void cscan() {
        System.out.print(now);
        Arrays.sort(inps);
        List<Integer> pages = getList();
        if (way == 1) {
            int idx = 0;
            for (Integer ech : pages) {
                if (ech > now) {
                    idx = pages.indexOf(ech);
                    break;
                }
            }
            for (int i = idx; i < len; i++) {
                int ech = pages.get(i);
                count += Math.abs(ech - now);
                now = ech;
                System.out.print("," + now);
            }
            if (idx != 0) {
                for (int i = 0; i < idx; i++) {
                    int ech = pages.get(i);
                    count += Math.abs(ech - now);
                    now = ech;
                    System.out.print("," + now);
                }
            }
        }else {
            int idx = 0;
            for (Integer ech : pages) {
                if (now > ech) {
                    idx = pages.indexOf(ech);
                }else {
                    break;
                }
            }
            for (int i = idx; i >= 0; i--) {
                int ech = pages.get(i);
                count += Math.abs(ech - now);
                now = ech;
                System.out.print("," + now);
            }
            if (idx != 0) {
                for (int i = len - 1; i > idx; i--) {
                    int ech = pages.get(i);
                    count += Math.abs(ech - now);
                    now = ech;
                    System.out.print("," + now);
                }
            }
        }
        System.out.println();
        System.out.println(count);
    }

    private static LinkedList<Integer> getList(){
        return new LinkedList<>(Arrays.asList(inps));
    }


}

相关文章

  • [操作系统]磁盘调度

    problem 实验内容:编写一个磁盘调度程序,模拟操作系统对磁盘的调度。 实验目的:本实验要求学生独立设计并实现...

  • 操作系统|磁盘调度算法

    常见的磁盘调度算法有: 1)先来先服务(FCFS)算法:它按照输入输出请求到达的顺序,逐一完成访问请求,它只考虑请...

  • 操作系统&文件系统优化

    操作系统优化 推荐Linux系统关闭swap磁盘调度算法设置为deadline 文件系统 推荐xfs/ext4no...

  • 电梯调度算法

    姓名:李振华 学号:17101223418 【嵌牛导读】:电梯调度算法是一类经典问题,在操作系统的磁盘...

  • shell script 入门

    为什么学shell 操作系统其实是一组软件,控制整个计算机硬件如cpu调度,内存、磁盘存储输入输出是操作系统的内核...

  • 并发编程(一) —— 基础

    概念 什么是进程和线程进程:是操作系统进行资源(CPU 内存 磁盘)分配的最小单位线程:CPU调度的最小单位,不能...

  • Linux I/O 调度方法及读写测试

    操作系统的调度有 CPU调度 CPUschedulerIO调度 IOscheduler IO调度...

  • K8S调度器 污点使用方法

    默认调度是:最大空闲资源调度 调度器 预算策略 CheckNodeCondition:检查节点网络磁盘等是否正常 ...

  • 磁盘调度算法

    前言 上文介绍了磁盘的结构,本文介绍磁盘的调度算法相关的内容。本文内容 1 一次磁盘读/写操作需要的时间 寻找时间...

  • 磁盘调度算法

    磁盘读写时间 = 寻道时间 + 旋转延迟 + 数据传输时间其中,寻道时间最夯,因此,针对寻道时间有优化,有以下几种...

网友评论

      本文标题:[操作系统]磁盘调度

      本文链接:https://www.haomeiwen.com/subject/lfiweftx.html