Task Scheduler Java Program

Write a scheduler in java which lists the tasks in the priority order based on the priority of the task and the duration it takes to complete.

import java.util.PriorityQueue;

public class TaskScheduler {
    public static void main(String[] args) {
        // Create a priority queue to store tasks
        PriorityQueue<Task> taskQueue = new PriorityQueue<>();

        // Add tasks to the priority queue
        taskQueue.add(new Task("Task 1", 2, 15));
        taskQueue.add(new Task("Task 2", 1, 10));
        taskQueue.add(new Task("Task 3", 2, 20));

        // Process tasks in order of priority
        while (!taskQueue.isEmpty()) {
            Task task = taskQueue.poll();
            System.out.println("Processing task: " + task.getName());
        }
    }
}

class Task implements Comparable<Task> {
    private String name;
    private int priority;
    private int duration;

    public Task(String name, int priority, int duration) {
        this.name = name;
        this.priority = priority;
        this.duration = duration;
    }

    public String getName() {
        return name;
    }

    public int getPriority() {
        return priority;
    }

    public int getDuration() {
        return duration;
    }

    @Override
    public int compareTo(Task other) {
        int priorityComparison = Integer.compare(this.priority, other.priority);
        if (priorityComparison != 0) {
            return priorityComparison;
        } else {
            return Integer.compare(this.duration, other.duration);
        }
    }
}

19 comments

  • I appreciate your website; however, I would like to bring to your attention that a number of your postings contain misspelled words. While I find it extremely bothersome to provide the truth, I will definitely revisit your site.

  • Moses3974

    The Beatles – легендарная британская рок-группа, сформированная в 1960 году в Ливерпуле. Их музыка стала символом эпохи и оказала огромное влияние на мировую культуру. Среди их лучших песен: “Hey Jude”, “Let It Be”, “Yesterday”, “Come Together”, “Here Comes the Sun”, “A Day in the Life”, “Something”, “Eleanor Rigby” и многие другие. Их творчество отличается мелодичностью, глубиной текстов и экспериментами в звуке, что сделало их одной из самых влиятельных групп в истории музыки. Музыка 2024 года слушать онлайн и скачать бесплатно mp3.

  • Your blog is a true delight.

  • My degree of admiration for your work is a reflection of my own enthusiasm for it. Your sketch is visually appealing, and your composed material is both interesting and informative. Despite this, you are apparently concerned about moving in a direction that may induce anxiety. I agree that you will be able to deal with the situation quickly and effectively.

  • Excellent blog here Also your website loads up very fast What web host are you using Can I get your affiliate link to your host I wish my web site loaded up as quickly as yours lol

  • I have read some excellent stuff here Definitely value bookmarking for revisiting I wonder how much effort you put to make the sort of excellent informative website

  • Techno rozen I am truly thankful to the owner of this web site who has shared this fantastic piece of writing at at this place.

  • BaddieHub I’m often to blogging and i really appreciate your content. The article has actually peaks my interest. I’m going to bookmark your web site and maintain checking for brand spanking new information.

  • Hi Neat post There is a problem along with your website in internet explorer would test this IE still is the market chief and a good section of other folks will pass over your magnificent writing due to this problem

  • Wow superb blog layout How long have you been blogging for you make blogging look easy The overall look of your site is magnificent as well as the content

  • Hello Neat post Theres an issue together with your site in internet explorer would check this IE still is the marketplace chief and a large element of other folks will leave out your magnificent writing due to this problem

  • Its like you read my mind You appear to know so much about this like you wrote the book in it or something I think that you can do with a few pics to drive the message home a little bit but other than that this is fantastic blog A great read Ill certainly be back

  • dodb buzz naturally like your web site however you need to take a look at the spelling on several of your posts. A number of them are rife with spelling problems and I find it very bothersome to tell the truth on the other hand I will surely come again again.

  • BYU Cougars This is my first time pay a quick visit at here and i am really happy to read everthing at one place

  • GlobalBllog I really like reading through a post that can make men and women think. Also, thank you for allowing me to comment!

  • Blue Techker This was beautiful Admin. Thank you for your reflections.

  • Jinx Manga Awesome! Its genuinely remarkable post, I have got much clear idea regarding from this post . Jinx Manga

  • Ezippi I do not even understand how I ended up here, but I assumed this publish used to be great

  • Noodlemagazine I just like the helpful information you provide in your articles

Leave a Reply