5
votes
3answers
78 views
Java Array Sort descending?
Is there any EASY way to sort an array in descending order like how they have a sort in ascending order in the Arrays class http://www.j2ee.me/javase/6/docs/api/java/util/Arrays.ht …
6
votes
9answers
358 views
Possible to rearrange an array in place in O(N)?
If I have a size N array of objects, and I have an array of unique numbers in the range 1...N, is there any algorithm to rearrange the object array in-place in the order specified …
0
votes
7answers
88 views
Sort Map<String, Object> by keys with IgnoreCase?
Well, I tested TreeMap but it doesn't take in account IgnoreCase on string comparision. I need to order lexicographically and ignoring case. Is there any other way?
Thanks, that w …
0
votes
6answers
71 views
Numbering in jQuery
How could I change the text below so that the text within it has a number appended to it.
<div class="right">This is some text</div>
<div class="right">This is …
0
votes
2answers
78 views
sorting elements javascript
I'm looking for a way to sort my elements, but it isn't as easy as it sounds. Please let me explain
My elements are grouped per 6 elements (thumbnails), each x represents a thumbn …
0
votes
4answers
70 views
Reversing order of elements
The following code rearranges elements by the attribute "amount". How can I alter this code so the items will be reversed? Thanks.
var parent = $('#items');
var children = $('a', …
0
votes
3answers
171 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)
…
0
votes
3answers
47 views
sorting in nsmutable array
Suppose I have following data in my game. I have developed game in cocos2d.
Name Score
Sagar 10000
Amit 2000
Vishal 90
Above data is stored in plist file.
Plist ha …
0
votes
4answers
99 views
Sorting Lists of List of Dictionaries
I've just read in a file that is something like:
name: john, jane
car: db9, m5
food: pizza, lasagne
Each of these rows (names, car, food) are in order of who owns what. Therefor …
2
votes
4answers
73 views
Sort a multidimensional list by a variable number of keys
I've read this post and is hasn't ended up working for me.
Edit: the functionality I'm describing is just like the sorting function in Excel... if that makes it any clearer
Here' …
2
votes
3answers
62 views
Data-structure that stores unique elements but answers queries for another ordering in C++
Hi,
is there a data structure, which stores its elements uniquely (for a given compare-Functor) but answers queries for the highest element in that data structure with respect to …
3
votes
3answers
126 views
How do I correctly sort strings in C?
Here is my code:
#include <stdio.h>
#include <string.h>
#include <errno.h>
int cmp(const void *a, const void *b) {
const char **ia = (const char **)a;
c …
1
vote
4answers
150 views
Fastest Way To Remove Duplicates In Lists Python
I have two very large lists and to loop through it once takes at least a second and I need to do it 200,000 times. What's the fastest way to remove duplicates in two lists to form …
0
votes
1answer
42 views
Objective-C, sorting an array based on a objects instance variable.
I'm working on a game like Rodents Revenge, just to point out where I'm coming from with this question. I'm using the cocos2d game engine aswell...
I have a layer that contains ab …
1
vote
5answers
81 views
Efficiently finding the ranks of elements in an array?
How does one find the rank of each element of an array, averaging in the case of ties, efficiently? For example:
float[] rank(T)(T[] input) {
// Implementation
}
auto foo = …
