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);
}
}
}
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.
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.