当前位置:   article > 正文

华为2017实习生招聘笔试题-任务调度_笔试题 任务生产 资源生产 任务调度 监控指示 优先级

笔试题 任务生产 资源生产 任务调度 监控指示 优先级

这里写图片描述
这里写图片描述
输入:[1.80.1.10]|[2.20.11.15]|[3.50.21.10]|[4.120.31.10]|[5.100.41.10]
输出:0.1|1.10|2.10|3.10|4.10|5.10|2.5|0.144

输入:[1.80.0.20]|[2.90.10.20]|[3.100.30.20]|[4.120.40.20]|[5.140.100.10]
输出:1.10|2.20|3.10|4.20|3.10|1.10|0.20|5.10|0.90

import java.util.*;
class Task{
    int id;//任务id
    int priority;//优先级
    int start;//开始时间
    int time;//持续时间
    Task(int id,int priority,int start,int time){
        this.id = id;
        this.priority = priority;
        this.start = start;
        this.time = time;
    }
}
public class Main {//线程调度
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String in = sc.nextLine();
        String[] tasks = in.split("\\|");
        Task[] taskList = new Task[5];
        int index = 0;
        for(String task : tasks){
            String[] content = task.substring(1,task.length() - 1).split("\\.");
            int id = Integer.valueOf(content[0]);
            int priority = Integer.valueOf(content[1]);
            int start = Integer.valueOf(content[2]);
            int time = Integer.valueOf(content[3]);

            taskList[index++] = new Task(id,priority,start,time);
        }
        //排序tasklist,降序
        sortTask(taskList);
        int[] cpu = new int[200];

        //优先调度优先级高的任务
        for(int i = 0; i < 200; i++){
            for(Task task : taskList){
                if(task.start <= i && task.time > 0){
                    task.time--;
                    cpu[i] = task.id;
                    break;
                }
            }
        }
        int start = -1;
        for(int end = 0; end < 199; end++){//输出结果
            if(cpu[end] != cpu[end + 1]){
                int time = end - start;
                start = end;
                System.out.print(cpu[end] + "." + time + "|");
            }
        }
        int time = 199 - start;//输出最后一段
        System.out.println(cpu[199] + "." + time);

//        for(int c : cpu){
//            System.out.print(c + ",");
//        }

    }
    public static void sortTask(Task[] taskList){
        for(int i = 0; i < taskList.length; i++){
            for(int j = i; j > 0; j--){
                if(taskList[j].priority > taskList[j - 1].priority){
                    Task temp = taskList[j];
                    taskList[j] = taskList[j - 1];
                    taskList[j - 1] = temp;
                }
            }
        }
    }
}
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/518571
推荐阅读
相关标签
  

闽ICP备14008679号