The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
6answers
126 views

Difference between Iterator and reverse iterator

what is difference between the following two code snippets. vector<int> a; // initialization code sort( a.rbegin(), a.rend() ); and vector<int> a; // same initialization as above ...
-4
votes
2answers
313 views

which sorting algorithm to use where? [closed]

There are varieties of sorting algorithms available. Sorting algorithm with time complexity of O(n^2) may be suited over O(nlogn), because it is in-place or it is stable. For example: For somewhat ...
2
votes
2answers
184 views

How to stable_sort without copying?

Why does stable_sort need a copy constructor? (swap should suffice, right?) Or rather, how do I stable_sort a range without copying any elements? #include <algorithm> class Person { ...
1
vote
2answers
303 views

Selection sort. How to do selection sort as stable algorithm?

I have this impementation of Selection sort algorithm. How to do this implementation as stable? I think its not possible/ int selection_sort1 ( int ai_numbers[], const int ci_count ) { int ...
1
vote
1answer
211 views

Does Powershell Sort-Object use a stable sort

I need to create a distinct list of history items from multiple sources, where the most recent item is the one kept. I'm trying something like this but because of the problem domain it is not simple ...
0
votes
1answer
196 views

Thrust::sort and transform_iterator

I want to sort a list of integer values, but before sorting them I should divide them to a number N. So I will have some duplicate keys, and I will use this duplication for stable_sort in the list. ...
2
votes
3answers
357 views

Make qsort stable just by modifying comparison? [duplicate]

Possible Duplicate: Stabilizing the standard library qsort? Is it possible to make qsort stable for ints just by modifying my comp op? That's my code. I'm using this on really small ...
1
vote
1answer
130 views

stable_sort within a class

I have been having an issue with type when using std::stable_sort I keep getting the error: argument of type 'bool (Memory::)(const Mem&, const Mem&)' does not match 'bool (Memory::*)(const ...
2
votes
1answer
348 views

How Can I Replace StringList.Sort with a Stable Sort in Delphi?

I'm doing a simple StringList.sort, but Delphi uses a QuickSort that is not a stable sort, meaning it may change the relative order of records with equal keys. I need to use a stable sort. What would ...
0
votes
1answer
300 views

Does hadoop streaming use a stable sort between map and reduce phases?

This has ramifications for multi-stage jobs. For example if we sort by key "a" in phase 1 of the job and key "b" in phase 2 of the job (which takes phase 1 output as stdin), can we assume when the ...
6
votes
1answer
428 views

Easy way to add stable sorting to TList and TStringList

I use TList/TObjectList and TStringList (with associated objects) for a multitude of tasks, either as-is, or as basis for more complex structures. While the sort functionality is usually good enough, ...
14
votes
3answers
937 views

which algorithm can do a stable in-place binary partition with only O(N) moves?

I'm trying to understand this paper: Stable minimum space partitioning in linear time. It seems that a critical part of the claim is that Algorithm B sorts stably a bit-array of size n in ...
1
vote
3answers
563 views

When will the Lua table.sort method become stable?

I was just reading the official Lua documentation on Table.sort and noticed that it says: "[Table.sort] algorithm is not stable; that is, elements considered equal by the given order may have ...
14
votes
3answers
3k views

Array.sort Sorting Stability in Different Browsers

What is the stability of Array.sort in different browsers. I know that the ECMA Script specification does not specify which algorithm to use, nor does it specify whether the sort should be stable. ...
3
votes
3answers
168 views

Stable separation for two classes of elements in an array

Consider the following problem. We are given an array of elements belonging to one two classes: either red or blue. We have to rearrange the elements of the array so that all blue elements come first ...
2
votes
3answers
2k views

How is counting sort a stable sort?

Suppose my input is (a,b and c to distinguish between equal keys) 1 6a 8 3 6b 0 6c 4 My counting sort will save as (discarding the a,b and c info!!) 0(1) 1(1) 3(1) 4(1) 6(3) 8(1) which will give ...
1
vote
1answer
219 views

Why might stable_sort be affecting my hashtable values?

I have defined a struct ABC to contain an int ID, string NAME, string LAST_NAME; My procedure is this: Read in a line from an input file. Parse each line into first name and last name and insert into ...
10
votes
3answers
1k views

Is python's sorted() function guaranteed to be stable?

The documentation doesn't guarantee that. Is there any other place that it is documented? I'm guessing it might be stable since the sort method on lists is guaranteed to be stable (Notes 9th point: ...
2
votes
1answer
925 views

“stable_sort()ing” a STL <list> in C++

I think the question title is clear enough: is is possible to stable_sort() a std::list in C++? Or do I have to convert it to a std::vector? I'm asking because I tried a simple example and it seems ...