0
votes
2answers
40 views
Wait for all threads in an Executor to finish?
I'm implementing a parellel quicksort as programming practice, and after I finished, I read the Java tutorial page on Executors, which sound like they could make my code even faste …
6
votes
13answers
937 views
Improving the quick sort.
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)
…
-1
votes
7answers
203 views
Java quick sort, reading from a user input file into any array (to be sorted)
What's up y'all,
I am trying to write some code in Java that will read in the numbers from a file (one # on each line of .txt file) put them into an array, and then run quick sort …
1
vote
2answers
176 views
Quicksort not working
This is all my code for my quicksort method, it works on a set of 21 numbers, but not on my real data set, which is about 100000. I have no idea what is wrong, I've been fiddling f …
0
votes
3answers
195 views
finding kth largest element in an array implemented bag
we have a collection of comparable held in a bag and have to find the kth largest element. I copied to a hashSet to remove duplicates then converted the hash set to an array to be …
1
vote
3answers
277 views
Building quicksort with php
I recently read about quicksort and was woudering whether it would be smart to build my own function to sort things with quicksort or if it would be inefficent. What do you think i …
7
votes
6answers
1k views
O(N log N) Complexity - Similar to linear?
Hey All,
So I think I'm going to get buried for asking such a trivial but I'm a little confused about something.
I have implemented quicksort in Java and C and I was doing some b …
0
votes
8answers
614 views
quicksort in C++ is slow
Hi
I have 9 values in the form of a matrix and need to compute the median from these values as part of a simulation process. I use quicksort in C++ (i.e qsort()) which results in …
2
votes
4answers
226 views
Is there a good library for sorting a large array of numbers in C?
If I have a large array of integers or floats, what is a good algorithm/
implementation for sorting (in C)?
It is a bit late in the game for an edit... but I am looking for correc …
0
votes
4answers
262 views
Problems implementing a quicksort
Got it working, final code: Pushes back data and sorts both in synchronization
#include "std_lib_facilities.h"
struct Name_pairs
{
vector<string>names;
vector …
0
votes
4answers
158 views
Is possible to make the quick sort fuction sort array descending?
I got the following php function, and want to change it into descending sorting, can someone help me:
function quickSort(&$numbers, $array_size,$level)
{
q_sort($numbers, …
0
votes
3answers
217 views
QuickSort and stack overflow exception
Hi.
I think that QuickSort in some specific conditions may cause a stack overflow exception.
There are two basic ways of selecting the pivot element during the sort process - the …
3
votes
5answers
298 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; } …
1
vote
3answers
405 views
Quick sort in GLSL?
I'm considering porting a large chunk of processing to the GPU using a GLSL shader. One of the immediate problems I stumbled across is that in one of the steps, the algorithm needs …
1
vote
6answers
265 views
Why use QuickSort in the practice?
Although the complex in case of bad resolution of QuickSort is O(N2). However QuickSort usually is chosen in the practical application, explain why?
