Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
7answers
24k views

Sort ArrayList of custom Objects by property

I had a question which is pretty easy if you know the answer I guess. I read about sorting ArrayLists using a Comparator but somehow in all of the examples people used compareTo which according to ...
18
votes
6answers
467 views

Sorting Java objects using multiple keys

I've got a collection of Duck objects and I'd like to sort them using multiple keys. class Duck { DuckAge age; //implements Comparable DuckWeight weight; //implements Comparable String ...
13
votes
5answers
8k 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 the Comparator class ...
12
votes
2answers
164 views

Java sort via Comparator<T> spends majority of its time in compare(Object,Object)

EDIT: The phenomenon was due to a distortion by trace profiling, see "Edit 2" below. I noticed something odd while doing profiling our code base. It seemed that sorting with a typed comparator (e.g. ...
11
votes
3answers
1k views

Comparable and Comparator contract with regards to null

Comparable contract specifies that e.compareTo(null) must throw NullPointerException. From the API: Note that null is not an instance of any class, and e.compareTo(null) should throw a ...
9
votes
4answers
144 views

Does anyone have a useful mnemonic for implementing Comparator?

Every time I need to implement a comparator, I get stuck trying to remember when I should return -1 and when 1, and I have to look it up. I mean, obviously -1 is less, so it implies that first is ...
9
votes
3answers
1k views

Java generics: Collections.max() signature and Comparator

I understand the get and put principle for collections: if a method takes in a collection that it will write a type T to, the parameter has to be Collection<? super T>, whereas if it will read a ...
8
votes
5answers
316 views

Difference between == and === in Mathematica

I was under the impression that = is an assignment, == is a numeric comparison, and === is a symbolic comparison (as well as in some other languages == being equal to and === being identical to. ...
8
votes
13answers
2k views

What's the difference between “LIKE” and “=” in SQL?

Is there any difference between: SELECT * FROM users WHERE username="davyjones" and SELECT * FROM users WHERE username LIKE "davyjones" (I think I've bungled up the syntax... pardon me for that, ...
7
votes
4answers
107 views

Does sorting by a non transitive comparator “work”?

What will happen if I supply a non-transitive Comparator to Collections.sort? Can I run into infinite loop? A small test I wrote produced an output, but I want to make sure this will always be the ...
5
votes
3answers
57 views

How to sort array with respective array ids or values?

I have two arrays: String [] ids= new String [5]; String [] points= new String [5]; String one="a,b,c,d,e"; //or String one="nepal,japan,finland ,brazil,spain"; String ...
5
votes
3answers
103 views

OCaml: Using a comparison operator passed into a function

I'm an OCaml noob. I'm trying to figure out how to handle a comparison operator that's passed into a function. My function just tries to pass in a comparison operator (=, <, >, etc.) and an int. ...
5
votes
3answers
2k views

why does my compare method throw exception — Comparison method violates its general contract!

Why does this code public class SponsoredComparator implements Comparator<SRE> { public boolean equals(SRE arg0, SRE arg1){ return arg0.getSponsored()==arg1.getSponsored(); } ...
5
votes
1answer
347 views

compare object properties and show diff in PHP

iam searching for a way to show me the different properties/values from given objects... $obj1 = new StdClass; $obj1->prop = 1; $obj2 = new StdClass; $obj2->prop = 2; ...
5
votes
11answers
582 views

Comparator and equals()

Suppose I need TreeSet with elements sorted with some domain logic. By this logic it doesn't meter order of some elements that doesn't equal so compare method can return 0, but in this case I couldn't ...
5
votes
4answers
967 views

C++ string sort like a human being?

I would like to sort alphanumeric strings the way a human being would sort them. I.e., "A2" comes before "A10", and "a" certainly comes before "Z"! Is there any way to do with without writing a ...
5
votes
7answers
680 views

Java: How do I perform list operations with different definitions of equals?

Java: How do I perform list operations with different definitions of equals? I have two lists of generic POJOs. I need to perform some set operations on the lists based on different ways of comparing ...
4
votes
5answers
76 views

JDK compiler optimize use of anonymous classes with no instance variables?

I was curious, I see this kind of thing a lot: Arrays.sort(array, new Comparator<Integer>() { public int compare(Integer a, Integer b) { return Math.abs(a) < Math.abs(b); } ...
4
votes
2answers
95 views

What is the best way of using two comparators?

I currently have the following structure used to get OHLC data over an interval class MarketDataItem{ .... static class DateComparator implements Comparator<MarketDataItem>{ } ...
4
votes
3answers
255 views

TreeSet and equals function

There is a Java bean object which has implemented equals function based on certain criteria (Criteria A). I have a requirement to identify unique objects based on another criteria (Criteria B). Since ...
4
votes
4answers
286 views

Direct comparator in Java out of the box

I have a method which needs a Comparator for one of its parameters. I would like to pass a Comparator which does a normal comparison and a reverse comparator which does in reverse. ...
4
votes
5answers
254 views

List<> own comparer

I have a List where element is: struct element { double priority; int value; } How can I implement my own comparer which allow me sort List by ...
4
votes
7answers
4k 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.compareToIgnoreCase(s2); } ...
4
votes
4answers
5k 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"), private final String ...
4
votes
5answers
1k 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 the computation is... ...
4
votes
9answers
17k views

Java: What is the difference between implementing Comparable and Comparator?

I have seen both used. When would you use one over the other?
4
votes
8answers
771 views

Is it OK to have a Java Comparator where order can change dynamically?

I have a set of time stamped values I'd like to place in a sorted set. public class TimedValue { public Date time; public double value; public TimedValue(Date time, double value) { ...
3
votes
3answers
60 views

Confused how to type comparator in another class

I am trying to sort the values of two LinkedHashMap. I can compile it and run the code just fine, but it tells me to use -Xlint option during compiling because it is unsafe code. It has something to ...
3
votes
3answers
98 views

Why should a Comparator implement Serializable?

New to Java. Learning it while working on an Android app. I am implementing a Comparator to sort a list of files and the android docs say that a Comparator should implement Serializable: It is ...
3
votes
1answer
66 views

Python sorting with “key” function insufficiencies

On one hand it is easy to see given a key function, one can easily implement a sort that does the same thing using a compare function. The reduction is as follows: def compare(x,y): return key(x) ...
3
votes
3answers
101 views

Is it possible to change the comparator of a C++ std::set?

I have a set of data which in some occasion I need to sort them in one way and some occasion in another way. For example, suppose the data set is a set of strings,{"abc", "dfg",...}. Sometimes I need ...
3
votes
1answer
150 views

Generic Comparator

This is for a school project. I have a Query class that holds an element that is part of the Query condition. So if it's a GreaterQuery and the element is 10, all values greater than 10 pass the ...
3
votes
3answers
328 views

Sort a list of hungarian strings in the hungarian alphabetical order

I am working at the moment with some data in hungarians. I have to sort a list of hungarians strings. According to this Collation Sequence page Hungarian alphabetic order is: A=Á, B, C, CS, D, ...
3
votes
6answers
122 views

Why it is implied that objects are equal if compareTo() returns 0?

For example. Let's have a class Person. Person have name and height. Equals (and hashCode()) takes into account only name. Person is comparable (or we implement comparator for it, does not matter ...
3
votes
3answers
272 views

Comparator<String> must override super class method

I'm making a TreeMap<String, String> and want to order it in a descending fashion. I created the following comparator: Comparator<String> descender = new Comparator<String>() { ...
3
votes
2answers
119 views

Java Interface Comparator static compare

int compare(Object o1, Object o2) Compares its two arguments for order. For compare 2 objects o1 and o2 need do something like: MyClass o1=new MyClass(); MyClass o2=new MyClass(); if ...
3
votes
5answers
129 views

Best Place to Put a Comparator

I am sorry if I am asking something that has been answered already but I could not find a reference. My question is where is the best place to put a comparator which layer does it belong to.For ...
3
votes
4answers
108 views

Best data structure for this problem?

I am using Java for this program, and I currently have a situation where I want to add key/value pairs to a table with integer keys, like add (1, "Bobby") add (6, "Sue") add (3, "Mary") add (8, ...
3
votes
4answers
220 views

Get objects from List of objects based on variable in object

I have List of User object, I just want to get User objects from List based on variables in User object. public class User { private int id; private String sex; private int age; ...
3
votes
2answers
326 views

Java Comparator class to sort arrays

Say, we have the following 2-dimensional array: int camels[][] = new int[n][2]; How should Java Comparator class be declared to sort the arrays by their first elements in decreasing order using ...
3
votes
2answers
142 views

using comparison function in stl container

Why can I do this: stable_sort(it1, it2, binary_function); but not this: priority_queue<type, vector<type>, binary_function> pq; Why can I use a function in the first case, but need ...
3
votes
4answers
482 views

Using binarySearch with Comparator and regex

I am trying to write a quick search that searches a List<String> Instead of looping through the list and manually checking, I want to do this using binarySearch, but I am not sure how to do it. ...
3
votes
4answers
264 views

Does a natural comparator exist in the standard api?

I need a comparator as part of a strategy pattern that can either use the natural ordering of the objects or some custom ordering. For the natural ordering case, I wrote a simple comparator: private ...
3
votes
2answers
2k views

Create a SortedMap in Java with a custom Comparator

I want to create a TreeMap in Java with a custom sort order. The sorted keys which are string need to be sorted according to the second character. The values are also string. Sample map: Za,FOO ...
3
votes
3answers
2k views

Java Class hierarchies with Generics, Comparator and sort error

I've been looking around to see if I find something to help me with my problem, but no luck until now. I've got the following classese: public interface ISort<T> { public List<T> ...
3
votes
7answers
2k views

Java Collections.sort - help me remove the unchecked warning

List<Question> questions = new ArrayList<Question>(); questions.addAll(getAllQuestions()); //returns a set of Questions Collections.sort(questions, new BeanComparator("questionId")); ...
3
votes
12answers
570 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 Comparator<String> ...
3
votes
2answers
5k views

Junit inline comparator initialization error

I've created a SortedList Class, which has a Constructor that takes a java.util.Comparator as an argument. After running Unit tests on my machine (through eclipse 3.3.0), everything was OK. However, ...
2
votes
4answers
75 views

Efficiency of JList Search

I came across some java code for doing a prefix search on a JList. Looking at it however, the meat of the algorithm is quite inefficient, using a linear search over the list for each keypress, and ...
2
votes
1answer
32 views

How to create a class that accepts a comparator (for Max Heap and Min Heap)?

In order to learn more about Heaps, I implemented my own MaxHeap class. I have tested it and it is working fine. Now, I want to create a MinHeap. The only thing that is going to be different across ...

1 2 3 4