1
vote
3answers
27 views

PriorityQueue retrieve elements sorted

I'd like to have a sorted collection in java that I can iterate over it. From what I read a PriorityQueue is the thing that I need but hen I can't figure out how to retrieve the elements ins a sorted ...
1
vote
4answers
93 views

What is the alternative to Comparator<T> when using composition over inheritance?

While refactoring a Java project to use composition and no inheritance, I have remaining a problem where polymorphic sorting of Collections was performed. Inheritance example: public class AClass { ...
-3
votes
3answers
46 views

Is that possible to sort HashMap by Arrays.sort [closed]

I would like to sort an array using Arrays.sort. I know that it should be done by Collections.sort but the teacher wanted use of Arrays.sort is that possible? I would like to pass comparator.
1
vote
1answer
65 views

Order By vs Sort for creating ordered collection

I have been through this article C# Sort and OrderBy comparison But the answer accepted in this question is obscure to me. I can't decide when I should use Sort or when I should use OrderBy. Is ...
1
vote
2answers
32 views

Backbone sort method

I have the following code : Campaign.Collection = Backbone.Collection.extend({initialize: function() { }, comparator: function(item) { return item.get('Name'); } } I call collection.sort() and ...
0
votes
1answer
23 views

sort List<CrExcessMaster> by opendate property in bean class

My method is public FilteredUIExcessList getCustomerExcesses(Long cif,String primaryCO) throws Exception { if (cif != null && !cif.equals(0L)) { List<CrExcessMaster> ...
0
votes
3answers
34 views

Which Collection framework to sort Objects

Here is a class Class Emp { String firstName; String lastName; int sal; ----------- } here I have a list of 100 employees, I want to sort the objects based on salary and ...
0
votes
2answers
60 views

c# sort a list by a column alphabetically

I have a class defined and I write records to this class to a List. Having trouble sorting the list before I write an error report. I'm trying to sort the list alphabetically by the 'finderror' type ...
-1
votes
3answers
63 views

How to use Collections.sort() in JAVA ? (Specific situation)

so I've been searching here on StackOverflow for the last few hours on how to do this thing with Collections.sort() on JAVA. I saw a lot of posts about this topic, but none of them had what I need. ...
1
vote
1answer
75 views

Efficent C# sorted collection of fixed number of mutable objects

I'm trying to think about efficient ways of maintaining collection of small fixed finite number of objects (few dozens), that will change very frequently (at least few times per second up to few dozen ...
2
votes
2answers
263 views

WPF Datagrid group and sort

I am implementing grouping in WPF datagrid. I want to sort the grouped items. For example datagrid is having four columns(empno,name,dept,address). I am doing grouping by dept column. when I click on ...
1
vote
3answers
50 views

How can I sort list of object based on one of the object's variables

I need to sort an ArrayList of films best rated to worse (5 best - 1 worst). I am using Collections.sort() but the list comes out the same. what am i doing wrong films.add(new Film().setRating(1)); ...
0
votes
4answers
49 views

Embedded ordering of elements of ArrayList

I need to sort elements subject to two parameters, rank and dist (embedded ordering). Firstly, elements must be ordered subject to rank values in descending order. Secondly, these ordered elements ...
0
votes
4answers
99 views

Initial indexes of sorted elements of ArrayList

The following code implements sorting of nfit in ascending order. public static void main(String[] args) { ArrayList<Double> nfit = new ArrayList<Double>(); nfit.add(2.0); ...
0
votes
0answers
41 views

Ordering entries in ArrayList

There are 5 entries stored in ArrayList<ArrayList<Double>> selected. Each of these entries is specified by two parameters - rank and cd: rank = [1.0, 2.0, 3.1, 1.2, 2.1] cd = [6.2, 5.2, ...
0
votes
3answers
96 views

Sort HashMap basis on Object's member variable from value [duplicate]

Have one class class Employee { int id; String name; } and one map which contains this object in value Map<Integer, Employee> map = new HashMap<Integer, Employee>(); Now I ...
2
votes
3answers
81 views

Is there an easy way to sort an arraylist in this manner?

I'm wondering if there is a way to sort an Arraylist of custom objects to fit the situation explained below? I'm assuming I'll have to write a custom comparator. Let's say I have an object class that ...
0
votes
2answers
104 views

Java sort any array of objects

I have defined an abstract class as follows: public abstract class Move implements Comparable<Move> { protected int cell; protected int weight; public int getWeight() { return ...
0
votes
4answers
111 views

Syncronized sorting between two ArrayLists

I have two ArrayLists. The first contains a group of words with capitalization and punctuation. The other contains this same group of words, but with the capitalization and punctuation removed. . ...
0
votes
5answers
57 views

Sorting Collections within and by the Sum of Another Collections

2 classes public class Student { public int StudentID { get; set;} public string Name { get; set;} public List<Fee> Fees {get;set;} } public class Fee ...
3
votes
3answers
68 views

Sorting Collections of Objects within another collection of Objects

First I have 2 classes class Student { int StudentID string Name Fee fee } class Fees { int FeeID string FeeName DateTime FeeDueDate } let say there are 10 students objects ...
-1
votes
1answer
159 views

Why Collections.sort is using merge sort insteadof quicksort? [closed]

We know that quick sort is the best sorting algorithm. The collections.sort used merge sort algorithm instead of quick sort. But Arrays.sort uses quick sort. What is the reason Collections.sort uses ...
1
vote
4answers
108 views

Sorting: How to create a particular custom order, then alphabetic sort in java

I have an Enum with around 70 fields. I want 10 of them to be displayed in a particular order, then I want the rest to be displayed alphabetically using a Comparator. I have tried many things, but I ...
1
vote
3answers
142 views

Collections.sort() in Java

I am writing a sortedAdd(T node) method in LinkedList. How can I compare node.key_ with current.key_? I can't use < (ascending order), since it's generic. public void sortedAdd(T node){ ... ...
0
votes
2answers
64 views

What's the best way to do this in Python?

I have a list of objects where each of them have start and end properties like: Item 0: Start: 1 End: 12 Item 1: Start: 6 End: 3 Item 2: Start: 12 End: 6 I want to order them so that each item's ...
0
votes
4answers
240 views

Sortable Java collection without duplicates

I am searching for sortable (I mean sorting after initialization and many times using Comparator) Java class collection without duplicates. Is there any more pure solution than writing code which will ...
1
vote
1answer
80 views

backbone.js sortBy cid

I'm using backbone.js and trying to sort a collection by cid. How do I sort by cid?? I can sort it by attribute like 'name': this.collection.sortBy("name") this works. But when I try to do ...
2
votes
2answers
52 views

How best to handle text substitutions that should run in a sequence?

Normally, when we have a template file and some text substitutions to run, we create a Dictionary<string,string> that looks something like: Dictionary<string,string> substitutions = new ...
3
votes
4answers
92 views

Ignore the word “the” while sorting a Java Collection

Currently I have some code that takes filenames and sorts them in some different ways (locale-sensitive natural sort, case-insensitive ASCIIbetical sort, by modified date, etc.), for example, for ...
0
votes
1answer
261 views

Product collection filtering/order direction issue

For my category view. I have a select drop down which uses ajax to set a session with the option value. I have overridden Mage_Catalog_Block_Product_List. This session value processed from ajax is ...
0
votes
1answer
163 views

Magento - Sorting product collection

I have a product collection which needs to be filtered. For this I have overridden the 'Mage_Catalog_Block_Product_List' and have the following code: $collection = parent::_getProductCollection(); ...
0
votes
3answers
154 views

How to sort arrayList<Object> by object attribute long in Java

I have class (JavaBean if you want to call it like that) class Tweet{ private millis; //number of millis since 1970 //other attributes and getters and setters, but i want to sort onlny by millis ...
0
votes
5answers
84 views

How can I sort a map contains another map by numbers

I have a HashMap of type: HashMap<String, HashMap<String, Integer>> This HashMap has values like {name, {dateasString, numberOfTasks}} I want to sort this by numberOfTasks. I can't ...
1
vote
1answer
100 views

Multiple sort conditions with lambdaj

How can I use multiple sort conditions with lambdaj? e.g. to obtain a List ordered first by name, then by age: Name Age nameA 14 nameB 12 nameB 15 nameC 10 nameC 11 Thanks for you help.
0
votes
5answers
178 views

Collections.sort implementation

I can not understand the method implementation and the logic of Collections.sort method. Here is the method implementation i found, public static <T extends Comparable<? super T>> void ...
0
votes
3answers
40 views

Ordering post in list by atribute java

Is possible to order elements in List indirectly (in Java 7)? Assume having elements of list which are post which have atributs (atributs of type Post) id, text, timestamp (millisec from 1970 - just ...
-6
votes
1answer
96 views

Sorting HashMap according to one Key [closed]

I have a ArrayList of Hashmap in which I have keys like name,phoneNo,Date,Age.... I want to sort the Hashmap according to Date field. If I use LinkedHashMap, then also it is not useful as I am ...
0
votes
3answers
106 views

C# - sorting by a property

I am trying to sort a collection of objects in C# by a custom property. (For context, I am working with the Twitter API using the Twitterizer library, sorting Direct Messages into conversation view) ...
0
votes
0answers
45 views

Places not getting sorted according to distance

I have list of places with the distance which is from current location to actual place location.I am getting all places with distace but not getting sorted. private final Comparator<Place> ...
2
votes
1answer
113 views

Passing Data In an Array From One Class to Another One

An error in my code is preventing it from displaying the following output: BMW Buick Audi VW Chevrolet Ford Opel Renault Peugeot Citroen Mustang Mercedes Fiat And then the same list but sorted ...
6
votes
2answers
222 views

Java Collections.sort() missing ConcurrentModificationException

I stumbled over this odd bug. Seems like Collections.sort() does not modify the sorted list in a way that enables a detection of concurrent modifications when also iterating over the same list. ...
2
votes
2answers
234 views

Sort C# ArrayList with DateTime

I have a C# ArrayList with objects that includes following fields. I have around 10 objects in the ArrayList. My problem is I need to sort the ArrayList based on the StartDate available in the system ...
0
votes
2answers
125 views

Collections.sort() issue in java7

Is there a sort issue with java7? I am using Collections.sort(list, comparator) When I switched over to java7, I noticed that the sorting resulted in a different list compared to the result when I ...
1
vote
2answers
107 views

How many times the CompareTo method is called when a collection is sorted?

If a type implements IComparable<T> and you have a collection of this type with 100 elements. When you call the Sort method on this collection, how many times would the CompareTo method be ...
2
votes
4answers
173 views

Sorting a generic collection

I searched but couldn't find any answer on how to sort my own generic collection class. I have these four classes: 2nd edit Simplified code, applied Evgeniy's suggestion but still doesn't sort, ...
2
votes
2answers
52 views

Sorting a Collection by result of

I wrote an extension method to try and count the words in a string that appear in a description. Here is the function (for examples sake, searching "soft" I'd want to see Microsoft so calling it ...
-2
votes
4answers
58 views

How to Sort a collection by a list of properties name and direction

I need to implement a method like this: public IList<T> Sort(IList<T> unsortedList, string[] fieldList, string[] direction) { /// .... } This method is to sort a collection by a ...
1
vote
2answers
69 views

Sorting a List of Mixed Data?

I had an interview today and in that i was asked to sort an list which contains String and Integers.it was like this Input: car bus 4 -5 apple 3 -1 Output: apple bus -5 -1 car 3 4 I was stuck at ...
0
votes
2answers
108 views

Grails - sort collection by an element AND an array

Is there a "groovy" way to sort a collection by a first parameter, and if the first parameter repeats in two or more elements sort it by a second parameter (the second parameter being an array) ? ...
4
votes
3answers
264 views

How to sort 3 parallel arrays?

I currently have 3 arrays of information and am unsure of how to sort them based on one of the values: int[] rank = { 1, 3, 4, 2, 5 }; String[] game = { "Snake", "Mines", "Fragged", "Siege", "Tower" ...

1 2 3 4 5 6