Advertisement
panaewboi

MYSP.JobComparator

May 12th, 2020
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package specialproject2;
  2.  
  3. import java.util.Comparator;
  4.  
  5. public class JobComparator implements Comparator<Job>
  6. {
  7. public int compare(Job a, Job b)
  8. {
  9. if(a.finishtime < b.finishtime){
  10. return -1;
  11. }
  12.  
  13. else{
  14. return 1;
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement