I was handed this assignment:
Complete the function void sort(List l) that sorts a list l that contains the strings "one","two","three","four" (although not necessarily in that order). You should declare a Comparator, and use this with the Collections.sort function. The comparator should use the comp function described above. The list l will be altered when it is sorted.
and the code I have already writen is this:
import java.util.*;
public class CW3 {
private static HashMap < String, Integer > map = new HashMap < String, Integer > ();
public CW3() {
map.put("one", 1);
map.put("two", 2);
map.put("three", 3);
map.put("four", 4);
List listB = Arrays.asList("A", "B", "C");
}
public static void main(String[] args) {
System.out.println(new CW3().comp("one", "two"));
System.out.println(new CW3().comp("two", "one"));
System.out.println(new CW3().comp("one", "one"));
}
int comp(String s1, String s2) {
int i1 = map.get(s1);
int i2 = map.get(s2);
return (i1 < i2 ? -1 : (i1 == i2 ? 0 : 1));
}
void sort(List l) {
Comparator c = new Comparator() {
public int compare(Object o1, Object o2) {
return 0; // FIXME change this so it calls comp
}
};
// now sort l using the comparator c
// FIXME complete this line
}
Any ideas where to start? it says list so I would have to create a list but then how would I sort them?
compis already defined. All you need is to call it. This is a very simple assignment: just followFIXMEinstructions.