We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Java
- Data Structures
- Java Sort
- Discussions
Java Sort
Java Sort
Sort by
recency
|
328 Discussions
|
Please Login in order to post a comment
import java.util.*;
class Student{ private int id; private String fname; private double cgpa; public Student(int id, String fname, double cgpa) { super(); this.id = id; this.fname = fname; this.cgpa = cgpa; } public int getId() { return id; } public String getFname() { return fname; } public double getCgpa() { return cgpa; } }
class SortStudent implements Comparator{ @Override public int compare(Student s1, Student s2){ int cgpaCompare = Double.compare(s2.getCgpa(), s1.getCgpa()); int namecompare = s1.getFname().compareTo(s2.getFname()); int compareId = s1.getId() - s2.getId();
} //Complete the code public class Solution { public static void main(String[] args){ Scanner in = new Scanner(System.in); int testCases = Integer.parseInt(in.nextLine());
}
import java.util.ArrayList; import java.util.Comparator; import java.util.List; import java.util.Scanner;
public class Solution {
}
import java.util.*;
class Student implements Comparable{ private int id; private String fname; private double cgpa; public Student(int id, String fname, double cgpa) { super(); this.id = id; this.fname = fname; this.cgpa = cgpa; } public int getId() { return id; } public String getFname() { return fname; } public double getCgpa() { return cgpa; } //= code writen here= public int compareTo(Student s){ if(this.getCgpa()
public class Solution { public static void main(String[] args){ Scanner in = new Scanner(System.in); int testCases = Integer.parseInt(in.nextLine());
}