Tagged Questions
This tag is for sorting algorithms and related questions.
148
votes
12answers
104k views
How do you sort a C# dictionary by value?
I often have a Dictionary of keys & values and need to sort it by value. For example, I have a hash of words and their frequencies, and want to order them by frequency.
There's SortedList which ...
127
votes
12answers
23k views
Fastest sort of fixed length 6 int array
Answering to another StackOverflow question (this one) I stumbled upon an interesting sub-problem. What is the fastest way to sort an array of 6 ints ?
As the question is very low level:
we can't ...
117
votes
17answers
71k views
Python: Sort a dictionary by value
I have a dictionary of values read from 2 fields in a database: a string field and a numeric field. The string field is unique so that is the key of the dictionary.
I can sort on the keys, but how ...
98
votes
12answers
4k views
Throwing the fattest people off of an overloaded airplane.
Let's say you've got an airplane, and it is low on fuel. Unless the plane drops 3000 pounds of passenger weight, it will not be able to reach the next airport. To save the maximum number of lives, ...
90
votes
6answers
97k views
C# List<> OrderBy Alphabetical Order
I'm using C# on Framework 3.5. I'm looking to quickly sort a Generic List<>. For the sake of this example lets say I have a List of a Person type with a property of lastname. How would I sort ...
88
votes
9answers
41k views
In Python how do I sort a list of dictionaries by values of the dictionary?
I got a list of dictionaries and want that to be sorted by a value of that dictionary.
This
[{'name':'Homer', 'age':39}, {'name':'Bart', 'age':10}]
sorted by name, should become
[{'name':'Bart', ...
85
votes
14answers
64k views
How to sort an NSMutableArray with custom objects in it?
What I want to do seems pretty simple, but I can't find any answers on the web. I have an NSMutableArray of objects, let's say they are 'Person' objects. I want to sort the NSMutable array by ...
83
votes
9answers
5k views
Pagination in a REST web application
This is a more generic reformulation of this question (with the elimination of the Rails specific parts)
I am not sure how to implement pagination on a resource in a RESTful web application.
Assuming ...
80
votes
17answers
6k views
In-Place Radix Sort
This is a long text. Please bear with me. Boiled down, the question is: does someone know a workable in-place radix sort algorithm?
Preliminary
I've got a huge number of small fixed-length strings ...
79
votes
7answers
7k views
Bubble Sort Homework
In class we are doing sorting algorithms and, although I understand them fine when talking about them and writing pseudocode, I am having problems writing actual code for them.
This is my attempt in ...
55
votes
9answers
32k views
How to sort a dataframe by column(s) in R
I want to sort a data.frame by multiple columns in R. For example, with the data.frame below I would like to sort by column z (descending) then by column b (ascending):
dd <- data.frame(b = ...
45
votes
7answers
1k views
Sorting algorithms for data of known statistical distribution?
It just occurred to me, if you know something about the distribution (in the statistical sense) of the data to sort, the performance of a sorting algorithm might benefit if you take that information ...
44
votes
8answers
10k views
Is it correct to use JavaScript Array.sort() method for shuffling?
I was helping somebody out with his JavaScript code and my eyes were caught by a section that looked like that:
function randOrd(){
return (Math.round(Math.random())-0.5);
}
coords.sort(randOrd);
...
42
votes
15answers
11k views
Dynamic Sorting within SQL Stored Procedures
This is an issue that I've spent hours researching in the past. It seems to me to be something that should have been addressed by modern RDBMS solutions but as yet I have not found anything that ...
41
votes
11answers
3k views
How to rank a million images with a crowdsourced sort
I'd like to rank a collection of landscape images by making a game whereby site visitors can rate them, in order to find out which images people find the most appealing.
What would be a good method ...
40
votes
11answers
7k views
Why doesn't java.lang.Number implement Comparable?
Does anyone know why java.lang.Number does not implement Comparable? This means that you cannot sort Numbers with Collections.sort which seems to me a little strange.
Post discussion update:
Thanks ...
38
votes
10answers
4k views
How do I sort unicode strings alphabetically in Python?
Python sorts by byte value by default, which means é comes after z and other equally funny things. What is the best way to sort alphabetically in Python?
Is there a library for this? I couldn't find ...
37
votes
8answers
23k views
How to sort an array of javascript objects?
I read in the following JSON using Ajax and store the objects in an array:
var homes = [{
"h_id": "3",
"city": "Dallas",
"state": "TX",
"zip": "75201",
"price": "162500"
}, {
...
36
votes
17answers
11k views
Which sort algorithm works best on mostly sorted data?
Which sort algorithm works best on mostly sorted data?
34
votes
2answers
26k views
How to sort a NSArray alphabetically?
How can I sort an array filled with [UIFont familyNames] into alphabetical order?
32
votes
12answers
6k views
Near-Duplicate Image Detection
What's a fast way to sort a given set of images by their similarity to each other.
At the moment I have a system that does histogram analysis between two images, but this is a very expensive ...
31
votes
3answers
38k views
How may I sort a list alphabetically using jQuery?
I'm a bit out of my depth here and I'm hoping this is actually possible.
I'd like to be able to call a function that would sort all the items in my list alphabetically.
I've been looking through the ...
28
votes
5answers
2k views
Interview Q: sorting an almost sorted array (elements misplaced by no more than k)
I was asked this interview question recently:
You're given an array that is almost sorted, in that each of the N elements may be misplaced by no more than k positions from the correct sorted ...
27
votes
3answers
940 views
Optimal bubble sorting algorithm for an array of arrays of numbers
Fix positive integers n and k.
Let A be an array of length n with A[i] an array of length k where every entry is n-i. For example, with n=5 and k=1, this is just
[ [5] , [4] , [3] , [2] , [1] ]
...
27
votes
16answers
2k views
Need a way to sort a 100 GB log file by date
So, for some strange reason I end up with a 100GB log file that is unsorted (actually it's partially sorted), while the algorithms that I'm attempting to apply require sorted data. A line in the log ...
26
votes
8answers
1k views
Algorithm to sort pairs of numbers
I am stuck with a problem and I need some help from bright minds of SO.
I have N pairs of unsigned integerers. I need to sort them. The ending vector of pairs should be sorted nondecreasingly by the ...
26
votes
3answers
10k views
How does the MapReduce sort algorithm work?
One of the main examples that is used in demonstrating the power of MapReduce is the Terasort benchmark. I'm having trouble understanding the basics of the sorting algorithm used in the MapReduce ...
26
votes
6answers
11k views
How to sort a list of objects in Python, based on an attribute of the objects?
I've got a list of Python objects that I'd like to sort by an attribute of the objects themselves. The list looks like:
>>> ut
[<Tag: 128>, <Tag: 2008>, <Tag: <>, ...
25
votes
5answers
805 views
Fastest way to sort 32bit signed integer arrays in JavaScript?
EDIT:
So far, the best/only major optimization brought to light is JS typed arrays.
Using a typed array for the normal radix sort's shadow array has yielded the best results. I was also able to ...
25
votes
7answers
48k views
C# List<> Sort by x then y
Similar to this question, but in 2.0, we want to sort by one element, then another. we want to achieve the functional equivalent of SELECT * from Table ORDER BY x, y
We have a class that ...
24
votes
2answers
3k views
How can I sort a DataGridTemplateColumn on a WPF Toolkit DataGrid?
I have a WPF Toolkit DataGrid with one DataGridTemplateColumn. I've specified in a grid attribute that I wish all columns to be sortable, but the DataGridTemplateColumn won't allow it. All other ...
24
votes
3answers
26k views
Best way to list files in Java, sorted by Date Modified?
I want to get a list of files in a directory, but I want to sort it such that the oldest files are first. My solution was to call File.listFiles and just resort the list based on File.lastModified, ...
23
votes
20answers
6k views
Rosetta Stone - Sorting Arrays
I thought I would pose a question I'm describing as a "Rosetta Stone". That is to say, I am posing a question, and would like to see answers given for a number of different languages so that someone ...
22
votes
3answers
386 views
Convert array to a sorted one using only two operations
I found this question on an online forum: Really interested on how it can be solved:
Given an array A of positive integers. Convert it to a sorted array with minimum cost. The only valid operation ...
22
votes
10answers
789 views
How to sort an array of Roman numerals?
I have an array containing Roman numerals (as strings of course). Like this:
$a = array('XIX', 'LII', 'V', 'MCCXCIV', 'III', 'XIII');
I'd like to sort them according to the numeric values of these ...
22
votes
9answers
710 views
What does sorting mean in double-byte languages?
I have some code that sorts table columns by object properties. It occurred to me that in Japanese or Chinese (non-alphabetical languages), the strings that are sent to the sort function would be ...
22
votes
5answers
6k views
How to sort in-place using the merge sort algorithm?
I know the question is not too specific.
All I want is someone to tell me how to convert a normal merge sort into an in-place merge sort (or a merge sort with constant extra space overhead).
All I ...
22
votes
4answers
43k views
Convert Collection to List
I am using TreeBidiMap from the apache collections library. I want to sort this on the values which are doubles.
My method is to retrieve a Collection view of the values using Collection coll = ...
22
votes
13answers
32k views
GridView sorting: SortDirection always Ascending
I have a gridview and I need to sort its elements when the user clicks on the header.
Its datasource is a List object.
The aspx is defined this way :
<asp:GridView ID="grdHeader" ...
22
votes
6answers
4k views
Is timsort general-purpose or Python-specific?
Timsort is an adaptive, stable,
natural mergesort. It has supernatural
performance on many kinds of partially
ordered arrays (less than lg(N!)
comparisons needed, and as few as
N-1), yet ...
21
votes
5answers
19k views
Sort NSArray of date strings or objects
I have an NSArray that contains date strings like this: "Thu, 21 May 09 19:10:09 -0700"
I need to sort the NSArray by date. I thought about converting the date string to an NSDate object first, but ...
21
votes
5answers
8k views
Sorting objects in an array by a field value in JavaScript
Say I have an array of JavaScript objects:
var objs = [ { first_nom: 'Lazslo',last_nom: 'Jamf' },
{ first_nom: 'Pig', last_nom: 'Bodine' },
{ first_nom: 'Pirate', last_nom: ...
21
votes
5answers
5k views
Natural Sort Order in C#
Anyone have a good resource or provide a sample of a natural order sort in C# for an FileInfo array? I am implementing the IComparer interface in my sorts.
21
votes
14answers
34k views
Sorting an IList in C#
So I came across an interesting problem today. We have a WCF web service that returns an IList. Not really a big deal until I wanted to sort it.
Turns out the IList interface doesn't have a sort ...
20
votes
14answers
2k views
Sorting strings is much harder than you thought!
Sorting a list of strings in a way that makes sense to a human is a very complex task. It's not just about comparing ASCII values. Usually, the case doesn't matter. You probably want "File 2" to be ...
19
votes
3answers
541 views
Hilbert sort by divide and conquer algorithm?
I'm trying to sort d-dimensional data vectors by their Hilbert order, for bulk-loading a spatial index.
However, I do not want to compute the Hilbert value for each point explicitly, which in ...
19
votes
9answers
777 views
Make an algorithm stable
I recently came across a Microsoft Interview Question for Software Engineer.
Given an array of positive and negative integers, re-arrange it so that you have positive integers on one end and ...
19
votes
10answers
3k views
Algorithm Interview
I went to an interview today and was asked this question:
Suppose you have 1 billion integers which are unsorted on one disk file. How would you determine the largest 100 numbers?
Anyone who has ...
19
votes
9answers
2k views
What is a better way to sort by a 5 star rating?
I'm trying to sort a bunch of products by customer ratings using a 5 star system. The site I'm setting this up for does not have a lot of ratings and continue to add new products so it will usually ...
19
votes
3answers
5k views
Does python have a sorted list?
By which I mean a structure with:
O(log n) complexity for x.push() operations
O(log n) complexity to find an element
O(n) complexity to compute list(x) which will be sorted
I also had a related ...