Common interface to create an object that specifies the way of comparing other objects.
1
vote
2answers
61 views
My comparator isn't sorting this PriorityQueue correctly?
It's my understanding that I don't need to use any methods to sort a PriorityQueue, but merely adding items to it and fetching items leaves them in a natural order.
Queue
public class JobSetQueue ...
-6
votes
1answer
31 views
How to have jtables values which are strings in alphabetical order using comparator and tablerowsorter? [closed]
the title says it clearly. I wanted to use quicksort algorithm but one of my friends said that I could use comparator but i don't know how to.
0
votes
4answers
51 views
How i can exclude a string when using comparator
Present i am using Comparator to sort my objects .I have the items in list as follows
FIRST ITEM
SECOND ITEM
THIRD ITEM
LAST ITEM
FORTH ITEM
Comparator code is:
public static ...
0
votes
3answers
50 views
How to sort a list by time and similarity?
I would like to sort a list of objects. Each object has a property year and a property name. The Java List needs to be sorted.
Class:
public class Record {
String name;
int year;
}
As an ...
0
votes
1answer
54 views
Returning Object That Has Biggest Value using comparator
Suppose we have a Java type called Contract which represents business contracts. Among the
method headers in class Contract are the following:
public Date finish()
returns an object representing ...
2
votes
2answers
31 views
Different types of comparables
when implementing the comparator interface to achieve natural ordering of objects :
say if we had the class Account:
class Account
{
Account(String name, int id)
int balance()
void ...
5
votes
5answers
220 views
Sort objects in descending order when the < comparator is defined?
I have a class A and a < comparator. How can I use them to sort an array of A in descending order?
class A {
...
};
class LessA {
bool operator()(const A& a1, const A& a2) const {
...
-1
votes
2answers
43 views
general purpose Comparator for a TreeMap<Object, T>?
I need TreeMap<Object, HGHandle> but my objects are neither Comparable nor is there a common Comparator<Object>.
The order in the Tree beeing only relevant for the tree itself, is there ...
0
votes
2answers
39 views
Errors using the Comparator interface
I am trying to write a simple application with priority queues. I am getting the following errors --" error: leastPriority is not abstract and does not override abstract method ...
1
vote
1answer
19 views
Treemap put seems to be deleting entries
I am attempting to use a treemap with an unsigned long comparator. However, the treemap's put seems to be deleting entires. Without the comparator, it works just fine but I can't seem to figure out ...
0
votes
1answer
65 views
Python 3: how to compare multiple strings in one line of code?
I'm trying to make a category select (by text interface) in Python 3, and I was wondering how I can compare if multiple strings are not true, and then print something along the lines of "that is not a ...
1
vote
3answers
26 views
Heap sorting vector of Clients, passing iterators incorrectly?
I am working on a program that creates a vector of 4 Clients, then heap sorts them using a comparator class (sorting by their account balance essentially). After that I'm simply printing out the ...
0
votes
1answer
58 views
compare 2 histograms with Chi-Square
i want to compare 2 Histograms, which have 2 dimensions.
For this i want to use the Chi-Square-Metric.
My comparator looks like this function:
double Histogram::compareHistogram(Histogram *hist){
...
-1
votes
2answers
31 views
Custom comparator (ordering) as a (multi)map ordering parameter?
My question is in many ways similar to this one: Pass a custom comparator through a function, but I tried the solution proposed there, and could not get it to work.
In a nutshell, I have a method ...
0
votes
2answers
65 views
C++ Custom Comparison Function with Template as Function Parameter
I'm trying to implement/use a comparator style interface like the one you would find in Java that would allow me to pass a generic comparator type to a function and use that to sort a data set.
This ...
0
votes
4answers
72 views
C++ std::set custom comparator
Well, my problem is that I'm using an std::set with a custom comparator, something like:
class A
{
public:
A(int x, int y):
_x(x), _y(y)
{
}
int hashCode(){ return (_y ...
-2
votes
2answers
51 views
comparator for LinkedHashMap
i am making a program to read data from excel files and store them in tables. But since I am new to Comparators in Java i have difficulties in making one of them. Here is my issue, I have managed to ...
1
vote
2answers
60 views
How to create set of integers with non-standard order in C++?
In C++03, I'd like to create a std::set where when iterating, one integer comes first, after that, I don't care what order, but I need an ordering to ensure there are no duplicates in the set. For ...
0
votes
1answer
57 views
Java comparator by using priority for classes that extend a common parent class
I need to implement several comparators in Java.
I have a lot of known classes, A1, A2, A3, ..., An, which all extends class A. What I want to to is a comparator class based on Guava Ordering, like ...
0
votes
3answers
47 views
Using Comparable for multiple dynamic fields of VO in java
I have a class
public class StudentVO
{
int age;
String name;
}
I used the same class in two different areas .At one place i need to sort
based on the age. and in ...
1
vote
5answers
70 views
How to avoid cast error generated by comparable interfaces
I have a generics class in Java:
public class PriorityList<T extends Number> implements Comparable<T> {
T[] array = (T[]) new Object[10];
And I have an error
...
-3
votes
1answer
57 views
java Comparators for a class in another class
Given three classes X, Y and Z in Java.
In X I have a public nonstatic function "double distance(Y)".
In Z I have an object x of type X and an Array.
How could I sort the array in ascending order of ...
1
vote
7answers
282 views
Sorting ArrayList of Arraylist<String> in java
Hello all maven developers
Actually I have an ArrayList of ArrayList of String.
In Outer ArrayList on each index each Inner ArrayList has four items have four parameters.
Contacts Id
Contacts Name
...
0
votes
2answers
21 views
Sorting ArrayList full of objects by their id using Collections.sort(arrayListName)
Okay, so I asked a similar question yesterday and have since done a bit of research, I'm still a little hazy though, thus my being here. So I have an inventory class which creates an ArrayList full of ...
1
vote
5answers
82 views
How to use the Comparator interface
I'm new to java, and I'm not really getting how to use the comparator interface.
I have an ArrayList of Items in an Inventory class and an Item class.
In the Item class I wrote:
public class Item ...
0
votes
2answers
116 views
java.lang.IllegalArgumentException: Comparison method violates its general contract (not reproducible) [duplicate]
I am trying to reproduce this exception (java.lang.IllegalArgumentException: Comparison method violates its general contract!) as I need to debug a piece of code, but the code below never throws it,
...
0
votes
0answers
26 views
linking grails controller to zk page for comparator
I am writing a groovy/grails page and would like to sort a certain date column in the correct order. I created a comparator code in the controller and used this code on the zul page to call it.
...
0
votes
1answer
78 views
Comparison method violates its general contract Exception
Below is a block of code that results in exception as indicated,
Code :
Collections.sort( arrayList, new Comparator()
{
public int compare( Object o1, Object o2 )
{
TypeAdapterSort ...
2
votes
1answer
92 views
Scala comparing generics?
I am writing a generic binary search implementation and I am failing to compile this (compare is not a member of type parameter B) even though B is an Ordering and it should be converted implicitly to ...
2
votes
2answers
50 views
Comparison method throws general contract exception
Below is a block of code that results in exception as indicated,
Code :
Collections.sort( arrayList, new Comparator()
{
public int compare( Object o1, Object ...
1
vote
1answer
26 views
Priority Queue object comparator with hashset object
HashSet Object ct_set City Object
how can i initialize a ProrityQueue object ct_pq with elements in ct_set with order from my populatation comparator
0
votes
1answer
64 views
Can failure a compareTo?
I have an application that converts some text files into other test and csv files (for each 3 text files I generate a text file and a similar csv file). It is ordering some camps according to a ...
0
votes
1answer
52 views
behaviour of binary predicate for stl map and multimap…
I have the following code:
#include <iostream>
#include <stdio.h>
#include <cmath>
#include <map>
using namespace std;
struct vals
{
int cods[5];
int sz;
};
struct myComp
{
...
0
votes
2answers
48 views
Dynamic equality for java objects
Suppose I have a Person class with simple attributes as name, age, address, phone and email.
I have a bunch of Sets each containing Person objects.
I would like to dynamically define Set specific ...
1
vote
1answer
44 views
Is a 2D integer coordinate in a set?
I have a list of 2D integer coordinates (coordinate pairs). I'd like to read these in and, later, determine if a point has been read.
The integer data may fall anywhere within the range offered by ...
-1
votes
1answer
37 views
Comparator Classes Usage
I am trying to get this program to compile and have been stuck at this point for multiple hours now. I am trying to sort ArrayLists which contain Rectangles. I am trying to sort these rectangles by ...
3
votes
2answers
63 views
Implementing Java Comparator
This is my first time trying to do this kind of thing, so if it's an absolutely horrible attempt that makes your eyes water, I'm sorry...
I am trying to write an algorithm which utilizes a ...
1
vote
1answer
86 views
Instantiating a TreeMap using a Comparator which should be able to access the said TreeMap
I'm trying to instantiate a TreeMap using a Comparator which should be able to access the said TreeMap, i.e. the one it will be used for (I guess that "will" must precisly be the problem...):
final ...
0
votes
3answers
67 views
Ordering by date. Comparator. Java
the next snippet taken from this java tutorial, compares the second argument object to the first one rather than viceversa.
*The method hireDate() returns a Date object signifying the hiring date of ...
1
vote
1answer
48 views
print based on number of occurences
I am trying to sort my output of my program based on the number of occurrences of each key in the hashmap. I want it to print out in an increasing order of occurrences. It already prints out ...
1
vote
1answer
66 views
What is the compare contract?
My java code threw the following exception:
java.lang.IllegalArgumentException: Comparison method violates its general contract!
I researched the message on StackOverflow and found several ...
0
votes
3answers
51 views
How to sort a list which has two set of elements into two alphabetically ordered sets list
I have a list with two kinds of elements - Free items and Paid items.
I want to sort the list such that the paid items will be in the first part of the list and the free items in the second part of ...
0
votes
1answer
47 views
soritng each string then set of string using qsort [duplicate]
The following code is to sort each string in a set(sort its characters), then sort all the strings in the set. But it is giving me segmentation fault..
#include<stdio.h>
...
0
votes
0answers
79 views
Java Sort using Comparator [closed]
I am trying to sort an ArrayList of ArrayLists using a Comparator and the object to compare is a double in the Map<ArrayList,Double>. I am doing the following but when I print the Arraylist, the ...
0
votes
4answers
109 views
Java Comparator on strings that contain integers [closed]
I'm trying to write a Comparator for sorting a string list based on the integers it has.
ex. H3232GHSD3 and H56RFRSFR4, the first string has integers 32323, while the second string has integers 564, ...
3
votes
3answers
94 views
Sort String s2 using the order of String s1 using either of comparable or comparator interface
i have two strings s1 and s2 and i would like to sort s2 based on the order of appearance of letters in s1 and if other alphabets are left in s2 sort them alphabetically.
Assume i have the following; ...
1
vote
1answer
171 views
Collections Sorting in Java
Whats wrong with this sort? It doesn't work properly.
public List<LibRegistration> getLibraryRegistrationsSortedByTypeAndName()
{
List<LibRegistration> l = getLibRegs();
...
1
vote
5answers
101 views
Why doesn't Java have an interface similar to Comparator, but for hashing? [duplicate]
In Java, the Comparator interface allows a client to specify an equals() and compare() method for any type. A Comparator can be passed to most (or maybe all) collections that require sorting, and the ...
2
votes
2answers
88 views
Comparable as argument in Java
I have a class PriorityList with the signature
Tree<Key extends Comparable<Key>, Value>(which is given, I can't modify). The elements Tree are inserted in some order, given the key (i.e. ...
1
vote
2answers
68 views
Comparator in Linked Lists
I'm writing a program that is a linked list, trying to insert something in order and I've used this in my code but it keeps saying that it's a NullPointerException, and I'm not sure why.
public ...




