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

learn more… | top users | synonyms

1
vote
0answers
42 views

Why is Quicksort using Dutch National Flag partition technique working slower than a normal Quicksort?

My implementation for Quicksort using Dutch National Flag partition technique. http://ideone.com/WgAiGG And for a normal Quicksort. http://ideone.com/GOE5Jl The code for Quicksort using Dutch ...
1
vote
1answer
30 views

QuickSort on a LinkedList in VBA

I've unfortunately inherited some VBA code which uses LinkedLists in VBA but nothing is sorted, and needs to be sorted. LinkedList example: http://support.microsoft.com/kb/166394 I'm trying to do a ...
-3
votes
1answer
38 views

How to sort the elements of B array, by copying into new array of P of SortPair elements using derived comparator, sort_cmp?

So I'm not sure how to copy the elements of B into a new array of P of SortPair elements where the int component is the array index, ex: B = [ (7,Q), (9,W), (5,K), (0,S), (9,B) ]<br> Would be ...
2
votes
1answer
49 views

Sort a string in C with quick sort

I want to sort a string in C according to the ASCII value of each char in the string. I write a quick sort to do this. My code is as following: #include<stdio.h> #include<stdlib.h> void ...
0
votes
1answer
66 views

Recursive parameters for quicksort

I'm trying to implement a simple Quicksort Algorithm (Doubly Linked List, circular). The Algorithm works pretty well, but it's much too slow, because of the following operation: iEl = ...
5
votes
1answer
87 views

Why does the JDK implementation of quicksort risk a stack overflow?

I saw a presentation the other day in which the speaker had used the technique outlined in McIlroy's paper A Killer Adversary for Quicksort to generate an input to Arrays.sort for primitive types that ...
0
votes
0answers
44 views

Quicksort overflow in java: recursion depth limit? [closed]

I'm in a basic programming class, now working on my own QuickSort algorithm. I'm pretty confident the code works (at least, it always sorts for array sizes ≤6 indices) but at ≥7 array indices, it ...
0
votes
1answer
31 views

Preserve insert order of object array after sort in Javascript

I've got a array of objects like the following: var a = { "TypeID" : 15, "Attr1" : "Something" }; var b = { "TypeID" : 17, "Attr1" : "Something" }; var c = { "TypeID" : 15, "Attr1" : ...
-2
votes
0answers
81 views

NullPointerException when calling QuickSort on a DoublyLinkedList [closed]

I try to implement a version of the Quicksort algorithm that works on doubly linked circular lists using Java. But I want to use a different approach which seems to not have been done that often ...
0
votes
1answer
65 views

Quicksort Linked List Pivot Last Element

I'm trying to implement a quicksort for sorting a CYCLIC LINKED LIST! There is a DoublyLinkedList which contains ListElements. The ListElement has the Element First, which has a reference to its ...
0
votes
0answers
68 views

quicksort with linked lists in java

my quicksort program takes a unsorted list as argument and returns sorted list when i implement the program its giving out the output for one list and showing nullpointerexception for another list ...
0
votes
3answers
75 views

Quicksort in Θ(n lg n)

This is a question to people who are programmers for a living - I just proved (using the Master theorem) that if we use quicksort and we pick the pivot to be the median of the the subarray we are ...
0
votes
2answers
41 views

Quick Search out of bounds of array and confusing array behaviour

I'm having multiple problems with my program (C#.NET) and have no idea what's causing them. The program is intended to sort a list of names and birthdays (formatted first name,last name,DD/MM/YYYY) ...
0
votes
2answers
34 views

Quicksort partitioning

I have the following array: int[] arr = { 19, 4, 2, 3, 9, 2, 10, 2, 7, 12, 5, 16, 8, 3, 11, 14, 0, 5 }; And now I use quicksort's partitioning to partition the array with pivot element 7: ...
0
votes
2answers
48 views

Quicksort: Almost sorted, but not quite. What's wrong?

Here's the code. The output is a very nearly correctly sorted array, but there are several elements out of order. Anyone able to spot the error? I'm pretty sure the swap and quicksort methods are ...
0
votes
2answers
65 views

Quick-sort complexity calculation

What value of q does partition for quick sort return, in case all the elements of the array have same values? myAns: O(n^2) quick sort algorithm in case array is already sorted as per requirement. ...
2
votes
1answer
302 views

QuickSort on Doubly Linked List

I want to implement the QuickSort Algorithm on a sync Doubly Linked List. I give the function "partition" the left and right border, then it starts to search lower values on the left side and put the ...
0
votes
1answer
48 views

Quicksort 3-way partitioning in java libraries

Is an implementation of 3-way partitioning quicksort available in the Java platform or do I have to implement it by myself? I could find nothing in the documentation, only implementations from ...
0
votes
2answers
76 views

quicksort using an arraylist java

I've written a quicksort for an arraylist and as it stands the logic seems to be sound. The problem I'm having is in the swapping of elements. What seems to be happening is rather than swapping the ...
-2
votes
0answers
53 views

Quicksort Function Using recursion

So im trying to write a quicksort function that uses recursion, I got the partition section to work but when I try and recall the function like partition(arry, count) it causes the program to crash, ...
-1
votes
3answers
269 views

Pseudocode example of quicksort using concurrency

I am a first year CS student at a University. My current assignment is about concurrency and the quicksort algorithm. As this is an assignment, I obviously wish to write the code myself to better ...
3
votes
10answers
137 views

Why does this implementation of quicksort return from a void function?

#include<iostream> using namespace std; template <class Item> void quicksort(Item a[], int l, int r) { if (r <= 1) return; int i = partition(a, l, r); quicksort(a, l, ...
1
vote
1answer
47 views

How to sort div elements according to id from a CSV list using jQuery? [duplicate]

I have this info in a variable "sortorder": "obj,exp,qual,edu,int,ref,img I also have corresponding div id's but in shuffled order. <div id = "qual">info</div> <div id = ...
0
votes
1answer
88 views

Trying to write Quicksort in D, get OutOfMemoryError

Currently trying to learn D programming language. Wrote this little quicksort algo, which returns a OutOfMemoryError when running with the shipped example. import std.stdio; import std.algorithm; ...
-1
votes
3answers
466 views

Quicksort of cyclic doubly linked list [closed]

I'm trying to sort a cyclic doubly linked list with this algorithm, somehow it gets into an andless cycle at the marked point public DoublyLinkedList sort(DoublyLinkedList in, int numOfElements) { ...
0
votes
1answer
87 views

parallel quick sort outdone by single threaded quicksort

I've been reading the book C++ concurrency in action, here is the example in the book using futures to implement parallel quick sort. But I found this function is more than twice slower than the ...
1
vote
1answer
36 views

Quicksort Implementations Using a Random Pivot

Are there any widely used Quicksort implementations which use a randomly selected pivot? I ask, because the C library qsort function is implemented using "Tukey’s ‘ninther’, the median of the ...
0
votes
1answer
27 views

How to ditribute accounts on users equaly based on a time zone in mysql?

I have 1000 account. each account has account_name, account_id, time_zone_id I want to generate activities for every account to 3 users. So I will need to generate 333 activities for used #10 and ...
1
vote
1answer
82 views

Quicksort using a binary file of ints with duplicates. Having trouble with recursion

First off, I want to state that this is homework. Often times we'll have assignments that I'll post questions for after we've finished it and I'd like to continue working with it to improve my ...
0
votes
3answers
72 views

Algorithm comparison in java: test program does not work

I'm trying to compare the execution of the java implementation of QuickSort and its hybrid version (using InsertionSort for those partitions which are smaller than an integer k). I wrote a test class ...
-2
votes
2answers
37 views

Why doesn't this quicksort show anything in the browser? [closed]

<?php error_reporting(E_ALL); function quicksort($seq) { if(!count($seq)) {return $seq;} $pivot= $seq[0]; $low = $high = array(); $length = count($seq); for($i=1; $i < ...
1
vote
2answers
195 views

OpenMP parallel quicksort

I try to use OpenMP to parallel quicksort in partition part and quicksort part. My C code is as follows: #include "stdlib.h" #include "stdio.h" #include "omp.h" // parallel partition int ...
0
votes
5answers
66 views

Quick sort implementation crash

so I am implementing quick sort and I get an error once I start the program. I think that logic-wise everything should be okay. I think that the problem is within the swap function since it doesn't ...
0
votes
1answer
28 views

Quicksort running in O(n^2) time? [duplicate]

Can anyone explain why the worst-case runtime for quicksort is O(n^2) and why this is rare?
1
vote
2answers
90 views

Quick sort runtime speed concerns

I am having something that troubles me. I have my implementation of a quick sort algorithm, but when I test it on an array of integers that has over 30 elements, sorting takes, in my opinion to long. ...
0
votes
0answers
48 views

QuickSort not finding EOF [closed]

I've written a quicksort program that for some reason doesn't seem to be able to resolve the end of my split files. When the WriteFinalSortedFile() method is run the code block that prints ...
1
vote
2answers
86 views

Quick sort an array and store the new ordering in C

I have two int arrays *start and *end whose size might be 5 millions. *start stores the start node number of an edge and *end stores the end node number. Now I want to sort *start in ascending way and ...
1
vote
3answers
129 views

Idiomatic quicksort in Go

I'm taking a look at Go, and was trying to find idiomatic implementations of classic algorithms to get a feel for the language. I chose quicksort because I'm particularly interested in the arrays vs ...
0
votes
1answer
146 views

How to implement linked list quicksort? (most of code complete)

I am having some difficulty implementing a linked list quicksort in visual basic, and the problem is the classic stack overflow. As it is a recursive algorithm I assume it is something fairly simple I ...
0
votes
1answer
79 views

How can I fix my quicksort implementation? [closed]

Here's my attempt to implement quicksort: (define (sublist ls start stop middle) (cond ( (null? ls) ls) ( (< middle start) (sublist (cdr ls) start stop (+ middle 1))) ( (> middle ...
0
votes
2answers
96 views

Trying to cause a “worse case” quicksort

I implemented a quicksort implementation in C and I'm trying to figure out what input is needed to cause a worse case performance. According to wikipedia: always choosing the last element in the ...
0
votes
2answers
63 views

Clarify the swap criteria in a Quicksort?

In a quicksort, the idea is you keep selecting a pivot. And you swap the a value you find on the left that is greater than the pivot with a value you find on the right which is less than the pivot. ...
0
votes
1answer
126 views

Java Inferred Types and Lists: Working through general Quicksort example

I am following along with this example of Quicksort implemented in Java, on Rosettacode. From what I understand this is supposed to take in an array of things that implement the Comparable interface, ...
0
votes
1answer
68 views

Quicksorting a cType array of numbers

I'm trying to implement a couple sorting methods on a ctypes array of integers in Python 3, and can't seem to figure out the Quicksort method. I believe the majority of my code is correct, but I'm ...
2
votes
2answers
200 views

Quick Sort algorithm not working for all arrays

This is for a homework assignment. I will eventually be translating this code into MIPS assembly, but that is the easy part for me. I have been debugging this code for hours and hours and have been to ...
0
votes
1answer
74 views

Implementing BubbleSort at the end of QuickSort

I finally got my bubblesort and quicksort working but am curious as to how to change my code so that when I reach the last 10 elements being sorted in my quicksort I instead change to bubblesort for ...
0
votes
2answers
165 views

Recursion Depth Cut Off Strategy: Parallel QuickSort

I have a parallel quickosort alogirthm implemented. To avoid overhead of excess parallel threads I had a cut off strategy to turn the parallel algorithm into a sequential one when the vector size was ...
0
votes
1answer
204 views

median of 3, quicksort with iterators

I'm trying choose the pivot for quicksort by taking the median of the first, last and center element of the vector to be sorted. I've seen a lot of implementations with the range in terms of int, but ...
0
votes
0answers
43 views

How to get O(log n) space complexity in quicksort? [duplicate]

The naive recursive version of quicksort : QUICKSORT(A,p,r) if p < r then q=PARTITION(A,p,r) QUICKSORT(A,p,q-1) QUICKSORT(A,q+1,r) This uses an O(n) extra space In Cormen ch 7-4 ...
0
votes
1answer
61 views

Quicksort sorts all but a few items

I have spent a lot of time attempting to figure out what I don't have right; debugging and all but I just cannot seem to put my finger on why my quicksort misses a few items of sorting. I've copied ...

1 2 3 4 5 11