54
votes
7answers
3k 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 …
39
votes
13answers
1k 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 …
22
votes
7answers
756 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 …
17
votes
14answers
2k views
Which sort algorithm works best on mostly sorted data?
Which sort algorithm works best on mostly sorted data?
16
votes
15answers
2k 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 …
15
votes
7answers
14k 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 …
14
votes
9answers
662 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 …
13
votes
9answers
1k 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 …
13
votes
19answers
2k 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 …
12
votes
8answers
132 views
How to compute the absolute minimum amount of changes to convert one sortorder into another?
Goal
How to encode the data that describes how to re-order a static list from a one order to another order using the minimum amount of data possible?
I have a feeling there is an algorithm or …
12
votes
7answers
283 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 …
12
votes
10answers
685 views
Sorting algorithm for a non-comparison based sort problem?
I am currently faced with a difficult sorting problem. I have a collection of events that need to be sorted against each other (a comparison sort) and against their relative position in the list.
In …
11
votes
6answers
1k 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: <>, …
11
votes
7answers
3k views
Choosing a pivot for Quicksort?
When implementing Quicksort one of the things you have to do is choose a pivot. But when I look at pseudocode like the one below. It is not clear how is should choose the pivot. First element of list? …
11
votes
13answers
1k 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 …
