Tagged Questions

Quicksort is a sorting algorithm invented by C. A. R. Hoare that has an average-case complexity of O(n log n), worst-case complexity of O(n^2). It is one of the fastest general-purpose sorting algorithms in practice.

learn more… | top users | synonyms

20
votes
4answers
892 views

Does quicksort with randomized median-of-three do appreciably better than randomized quicksort?

I was just answering a question about different approaches for picking the partition in a quicksort implementation and came up with a question that I honestly don't know how to answer. It's a bit ...
20
votes
6answers
14k views

O(N log N) Complexity - Similar to linear?

So I think I'm going to get buried for asking such a trivial question but I'm a little confused about something. I have implemented quicksort in Java and C and I was doing some basic comparissons. ...
19
votes
8answers
14k 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? ...
17
votes
9answers
925 views

Why is the minimalist, example Haskell quicksort not a “true” quicksort?

Haskell's website introduces a very attractive 5-line quicksort function, as seen below. quicksort [] = [] quicksort (p:xs) = (quicksort lesser) ++ [p] ++ (quicksort greater) where lesser ...
17
votes
3answers
751 views

why is merge sort preferred over quick sort for sorting linked lists

I read the following in a forum : Merge sort is very efficient for immutable datastructures like linked lists and Quick sort is typically faster than merge sort when the data is stored ...
17
votes
3answers
647 views

My quicksort sorts larger numbers faster? (Quick Python Test Code)

Hey guys I was messing around with Python trying to practice my sorting algorithms and found out something interesting. I have three different pieces of data: x = number of numbers to sort y = range ...
15
votes
2answers
675 views

A few sorting questions

I have found a way that improves (as far as I have tested) upon the quicksort algorithm beyond what has already been done. I am working on testing it and then I want to get the word out about it. ...
14
votes
2answers
314 views

Quick sort in compiltion time using C++11 variadic template

Quick sort in compiltion time using C++11 variadic template Hi, all. I just implement the quick sort by using C++11 variadic template to evaluate it in compilation time. But I encounter the ...
12
votes
5answers
4k views

Worst case for QuickSort - when can it occur?

When analyzing QS, every one always refers to the "almost sorted" worst case. When can such a scenario occur with natural input? The only example I came up with is re-indexing.
11
votes
3answers
567 views

Why is C quicksort function much slower (tape comparisons, tape swapping) than bubble sort function?

I'm going to implement a toy tape "mainframe" for a students, showing the quickness of "quicksort" class functions (recursive or not, does not really matter, due to the slow hardware, and well known ...
11
votes
5answers
910 views

When should we use Radix sort?

It seems Radix sort has a very good average case performance, i.e. O(kN): http://en.wikipedia.org/wiki/Radix_sort but it seems most people still are using Quick Sort, don't they?
11
votes
6answers
7k views

Correctly multithreaded quicksort or mergesort algo in Java?

Do you know of any library that would provide a well-tested concurrent quicksort or mergesort algorithm for Java? We've had issues on a 16-(virtual)-cores Mac where only one core (!) was working ...
11
votes
3answers
1k views

Has anyone seen this improvement to quicksort before?

Handling repeated elements in previous quicksorts I have found a way to handle repeated elements more efficiently in quicksort and would like to know if anyone has seen this done before. This method ...
10
votes
1answer
156 views

Sorting for the heck of it — Quicksort — help needed

We have to make an optimized quicksort for out own Comparable base class. For the life of me I cannot make it work. The algorithm seems straight forward, however I cannot seen to get my code to work. ...
9
votes
13answers
3k views

Quicksort slower than Mergesort?

I was working on implementing a quicksort yesterday, and then I ran it, expecting a faster runtime than the Mergesort (which I had also implemented). I ran the two, and while the quicksort was faster ...
8
votes
7answers
858 views

What is a Deterministic Quicksort?

I have been reading about Quicksort and found that sometimes it' s referred to as "Deterministic Quicksort". Is this an alternate version of the normal Quicksort ? What is the difference between a ...
7
votes
1answer
702 views

C# functional quicksort is failing

I'm trying to implement quicksort in a functional style using C# using linq, and this code randomly works/doesn't work, and I can't figure out why. Important to mention: When I call this on an array ...
7
votes
3answers
278 views

Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...
7
votes
13answers
2k views

Improving the quick sort

If possible, how can I improve the following quick sort(performance wise).Any suggestions? void main() { quick(a,0,n-1); } void quick(int a[],int lower,int upper) { ...
6
votes
8answers
614 views

Quick Sort vs Selection Sort (Java vs C++)

I created two projects. One in C++ and one in Java. I did time trials for a QuickSort and SelectionSort for both. Oddly enough I found some very strange behavior. Here were the results for an array ...
6
votes
3answers
373 views

Why is quicksort faster in average than others?

As we know, the quicksort performance is O(n*log(n)) in average but the merge- and heapsort performance is O(n*log(n)) in average too. So the question is why quicksort is faster in average.
5
votes
3answers
200 views

parallel quicksort in c

After a lot of searching for an implementation of parallel quicksort in c, I'm about to dive in and code it myself. (I need to sort an array of about 1 million text strings.) It seems that all the ...
5
votes
2answers
179 views

How is Grand Central Dispatch so fast? (For this Quicksort algorithm)

In an effort to brush up on some multithreading/sorting fun, I decided to put together a Quicksort test (written in Objective-C) that uses Grand Central Dispatch to determine how much faster it is to ...
5
votes
3answers
117 views

quick-sorts iterator requirements

tl;dr: Is it is possible to implement quicksort on a doubly linked list efficiently? My understanding before thinking about it was, no, its not. The other day I had an opportunity to consider the ...
5
votes
4answers
248 views

What does Logn actually mean?

I am just studying for my class in Algorithms and have been looking over QuickSort. I understand the algorithm and how it works, but not how to get the number of comparisons it does, or what logn ...
5
votes
3answers
284 views

Parallelizing quicksort makes it slower

I'm quicksorting over a very large amount of data, and for fun am trying to parallelize it to speed up the sort. However, in it's current form, the multithreaded version is slower than the ...
5
votes
3answers
637 views

What Sorting Algorithm Is Used By LINQ “OrderBy”?

Evidently LINQ's "OrderBy" had originally been specified as unstable, but by the time of Orca it was specified as stable. Not all documentation has been updated accordingly - consider these links: ...
5
votes
2answers
385 views

randomized quicksort: probability of two elements comparison?

I am reading "Probability and Computing" by M.Mitzenmacher and E.Upfal. I am having problems understanding how the probability of comparison of two elements is calculated. Input: the sorted list ...
5
votes
6answers
964 views

Quicksort in F# - syntax question

I have a simple f# quick sort function defined as: let rec qsort(xs:List<int>) = let smaller = xs |> List.filter(fun e -> e < xs.Head) let larger = xs |> List.filter(fun e -> e ...
5
votes
5answers
2k views

Is this a correct implementation of quicksort?

I would like to check if this is a correct implementation of QuickSort, It seems to be doing the job, but Am I missing out anything? public class QuickSort implements Sorter { public void ...
4
votes
4answers
126 views

In the List<T>.Sort() method, is an item ever compared to itself?

If I pass in a custom IComparer to an instance of a List's Sort() method, will the comparer's Compare(x,y) method ever be called with the same item? ie. Is it possible that Compare(x,x) may be ...
4
votes
3answers
188 views

quicksort stack size

Why do we prefer to sort the smaller partition of a file and push the larger one on stack after partitioning for quicksort(non-recursive implementation)? Doing this reduces the space complexity of ...
4
votes
4answers
913 views

Using red black trees for sorting

The worst-case running time of insertion on a red-black tree is O(lg n) and if I perform a in-order walk on the tree, I essentially visit each node, so the total worst-case runtime to print the sorted ...
4
votes
3answers
667 views

What is the difference between quicksort and tuned quicksort?

What is the fundamental difference between quicksort and tuned quicksort? What is the improvement given to quicksort? How does Java decide to use this instead of merge sort?
4
votes
5answers
2k views

Quicksort superiority over Heap Sort

Heap Sort has a worst case complexity is O(nlog) n wnile Quicksort is O(n^2). But emperical evidences say quicksort is superior. Why is that??
4
votes
5answers
813 views

Why does List<T>.Sort method reorder equal IComparable<T> elements?

I have a problem with how the List Sort method deals with sorting. Given the following element: class Element : IComparable<Element> { public int Priority { get; set; } public string ...
3
votes
3answers
126 views

Exactly how many comparisons does merge sort make?

I have read that quicksort is much faster than mergesort in practise, and the reason for this is the hidden constant. Well, the solution for the randomized quick sort complexity is 2nlnn=1.39nlogn ...
3
votes
2answers
61 views

stackoverflow error in quicksort

So I've been trying to implement a quicksort myself, but it generates a stackoverflowerror, but I can't seem to find what the cause is. Can someone help me? public static int partition(int[] a, int ...
3
votes
1answer
214 views

Comparison between timsort and quicksort

Why is it that I mostly hear about quicksort being the fastest overall sorting algorithm when timsort (according to wikipedia) seem to perform much better? Google didn't seem to turn up any kind of ...
3
votes
1answer
115 views

quicksort implementation

following code for quicksort does not work and i can't understand what is reason #include <iostream> using namespace std; void exch(int a[],int i,int j){ int s=a[i]; a[i]=a[j]; ...
3
votes
2answers
181 views

In-Place Quicksort in matlab

I wrote a small quicksort implementation in matlab to sort some custom data. Because I am sorting a cell-array and I need the indexes of the sort-order and do not want to restructure the cell-array ...
3
votes
2answers
102 views

Java Quicksort Help

I am trying to implement a quick sort in java. However, I am experiencing odd behavior. My algorithm works for 70 items or less but anything above that makes the entire java app freeze. is this is ...
3
votes
1answer
234 views

Tail recursion in ruby - what's the difference between these two implementations?

I'm new to Ruby and just started to pick up the language a couple of days back. As an exercise, I tried to implement a simple quicksort class Sort def swap(i,j) @data[i], @data[j] = @data[j], ...
3
votes
2answers
375 views

Implement Quick sort algorithm with partition of 3 elements,

convert this Quick sort algorithm with partition of 3 elements, partition of 5 elements, partition of 7 elements, partition of 9 elements and partition of 11 element. #include"stdafx.h" ...
3
votes
4answers
552 views

Random-Pivot Quicksort in Haskell

Is it possible to implement a quicksort in Haskell (with RANDOM-PIVOT) that still has a simple Ord a => [a]->[a] signature? I'm starting to understand Monads, and, for now, I'm kind of ...
3
votes
3answers
691 views

Quicksort- how pivot-choosing strategies affect the overall Big-oh behavior of quicksort?

I have came up with several strategies, but I am not entirely sure how they affect the overall behavior. I know the average case is O(NlogN), so I would assume that would be in the answer somewhere. I ...
3
votes
3answers
433 views

C# QuickSort too slow

I'm learning different types of sorting now, and I found out that, starting from a certain point, my QuickSort algorithm doesn't work that quick at all. Here is my code: class QuickSort { ...
3
votes
1answer
264 views

Regarding Quick Sort Killer

Some of you might have stumbled upon this cute article - http://igoro.com/archive/quicksort-killer/ \ What is really interesting is how he fixes quick sort to perform in O(N log N) against the ...
3
votes
4answers
2k views

In Java, How do you quicksort an ArrayList of objects in which the sorting field is multiple layers deep?

Basically, I have a Container class called "Employees" which has in it an ArrayList. This ArrayList contains "Employee" objects, which in turn contain "EmployeeData" objects which in turn contain ...
3
votes
3answers
740 views

Why quicksort is more popular than radix-sort?

Why quicksort(or introsort), or any comparison-based sorting algorithm is more common than radix-sort? Especially for sorting numbers. Radix-sort is not comparison based, hence may be faster than ...

1 2 3 4 5