3
votes
7answers
120 views
Java TreeMap (comparator) and get method ignoring the comparator
public final Comparator<String> ID_IGN_CASE_COMP = new Comparator<String>() {
public int compare(String s1, String s2) {
return s1.compareToIgnoreC …
0
votes
7answers
119 views
How to pronounce Comparator? [closed]
This came up in a programming class and generated a surprising amount of debate. Any recommendations on the correct pronunciation of Comparator? We had suggestions of COM-par-ay- …
1
vote
4answers
115 views
How do I sort enum members alphabetically in Java?
I have an enum class like the following:
public enum Letter {
OMEGA_LETTER("Omega"),
GAMMA_LETTER("Gamma"),
BETA_LETTER("Beta"),
ALPHA_LETTER("Alpha"),
pr …
1
vote
5answers
41 views
Creating an universal comparator to sort a tree map problem.
This is where I'm at:
public final Comparator<Object> ID_IGN_CASE_COMP = new Comparator<Object>() {
public int compare(Object o1, Object o2) {
String s1 = …
3
votes
12answers
212 views
How can I improve this Comparator?
I've got a few Comparators -- one for Dates, one for decimals, one for percentages, etc.
At first my decimal comparator looked like this:
class NumericComparator implements Compa …
1
vote
7answers
167 views
Java, how to add a “comparator” class to increase code reusability
Preface: I'm posting this on behalf of a friend (who's apparently to shy to post it himself), I browsed through the related questions and I didn't seem to find any duplicate.. But …
0
votes
2answers
170 views
Java: Trouble with TreeSet and LinkedList
I have an unsorted linked list. To sort it, I thought I'd put the values into a TreeSet with a comparator supplied, then return those values as a new linked list. Yet, it fails.
C …
1
vote
2answers
238 views
STL Priority Queue on custom class
I'm having a lot of trouble getting my priority queue to recognize which parameter it should sort by. I've overloaded the less than operator in my custom class but it doesn't seem …
0
votes
5answers
252 views
Help needed to write a comparator for my job interview code sample
I need help to write a comparator :-
I want this output :-
Martin Joseph Male 4/2/1979 Green
Ramya Patil Female 5/4/2009 Red
Don kelly Male 5/6/1986 Yellow
Van Shin …
0
votes
5answers
237 views
Java SortedSet + Comparator, consistency with equals() question
I'd like to have a SortedSet of Collections (Sets themselves, in this case, but not necessarily in general), that sorts by Collection size. This seems to violate the proscription …
2
votes
5answers
187 views
How does Javascript’s sort() work?
How does the following code sort this array to be in numerical order?
var array=[25, 8, 7, 41]
array.sort(function(a,b) {
return a - b})
I know that if the result of t …
0
votes
2answers
195 views
Crafting a Comparator object for sorting generic List<? extends T> using Collections.sort()
I am trying to implement a generic sort utility method for a List of objects of any class that implements MyInterface. Per Java API (http://java.sun.com/javase/6/docs/api/java/util …
0
votes
6answers
769 views
Java: SortedMap, TreeMap, Comparable? How to use?
I have a list of objects I need to sort according to properties of one of their fields. I've heard that SortedMap and Comparators are the best way to do this.
Do I implement Comp …
1
vote
6answers
449 views
Java: What is the difference between implementing Comparable and Comparator?
I have seen both used. When would you use one over the other?
1
vote
4answers
733 views
Natural sort order string comparison in Java - is one built in?
I'd like some kind of string comparison function that preserves natural sort order1. Is there anything like this built into Java? I can't find anything in the String class, and t …
