1
vote
3answers
75 views
How do I search for a String in an array of Strings using binarySearch or another method?
using binarySearch never returns the right index =/
int j = Arrays.binarySearch(keys,key);
where keys is type String[] and key is type String
I read something about needing to …
0
votes
1answer
21 views
PHP Array sorting
Question:
Array
(
[1257984000] => 2009-11-11 19:00:00
[1258416000] => 2009-11-16 19:00:00
[1258722000] => 2009-11-20 08:00:00
[1258394400] => 2009-11-1 …
0
votes
4answers
24 views
XSLT, sort and group by year-date
Hello
Regarding Umbraco XSLT version 1.
I have aprox. 150 news items in XML. Lets say like this (all is pseudocode until I get more familiar with this xml/xslt):
<news>
…
6
votes
4answers
115 views
Sorting a binary 2D matrix?
I'm looking for some pointers here as I don't quite know where to start researching this one.
I have a 2D matrix with 0 or 1 in each cell, such as:
1 2 3 4
A 0 1 1 0
B 1 1 1 0
…
2
votes
2answers
69 views
C# Sort list while also returning the original index positions?
Hi,
I'm interested in sorting a collection, but also returning an index which can be used to map to the original position in the collection (before the sort).
Let me give an exam …
0
votes
2answers
77 views
Why do these different Perl sort subroutines give me different orders of elements?
I copied this example from perldoc -f sort. I added the @old array and the prints of the @new arrays. Why do I get three different @new arrays? Is there something wrong with my @ol …
0
votes
2answers
67 views
Linux Sort command
Hello,
I would like to know which sorting algorithm the linux SORT command uses?
0
votes
3answers
21 views
AS3 sortOn woes
Hi all,
I have an Array called alarmQueue. I'm pushing a new arrays in to it with the contents [hours:int, minutes:int, seconds:int] and I'd like to use alarmQueue.sortOn() to sort …
0
votes
4answers
86 views
Sort an array of structures in .NET
This is one of those times when only the hive mind can help - no amount of Google-fu can!
I have an array of structures:
Structure stCar
Dim Name As String
Dim MPH As In …
2
votes
2answers
65 views
vb.net dataTable/DataGridView search/sort
So I have a dataGridView and a textbox on a form. I want to be able to search through the dataGridView and sort it compared to the string in the text box. ex:
I type "acv" in the …
1
vote
3answers
101 views
sorting function in python.
Hi,
I'm trying to sort a list of objects according to my criteria.
Here is my sorting function:
def sort_pots(self, pot1, pot2):
coeff1 = ((pot1.movable + pot1.convertible) …
0
votes
2answers
58 views
The Fastest DataStructure to Filter with in C#
Currently we are filtering and sorting data with a datatable.
/// <summary>
/// Filters the data table and returns a new data table with only the filtered rows.
…
7
votes
3answers
142 views
Grokking Timsort
There's a (relatively) new sort on the block called Timsort. It's been used as Python's list.sort, and is now going to be the new Array.sort in Java 7).
There's some documentation …
0
votes
3answers
100 views
sort vector by more than 1 field
How do I sort the below code by name, age and score... all three fields
#include <string>
#include <vector>
#include <algorithm>
struct student_t
{
s …
1
vote
2answers
44 views
achieving a complex sort via Linq to Objects
I've been asked to apply conditional sorting to a data set and I'm trying to figure out how to achieve this via LINQ. In this particular domain, purchase orders can be marked as …
