2
votes
3answers
51 views
Storing Python dictionary entries in the order they are pushed
Fellows:
A Python dictionary is stored in no particular order (mappings have no order), e.g.,
>>> myDict = {'first':'uno','second':'dos','third':'tres'}
myDict = …
0
votes
3answers
24 views
Actionscript: Sorting ArrayCollection by date: YYYY-MM-DD
I have an ArrayCollection of Objects. Each Object has the following keys/values:
{date: 2009-12-01, visits=13555, bouceRate=45}
{date: 2009-12-05, visits=46955, bouceRate=45}
{date: 2009-12-06, …
0
votes
3answers
43 views
JQuery Help Needed for ID order given N Rows
Hi. I am trying to add a function that, when a user clicks "remove",
1) updates the numbers in the left-most column
2) updates the id order
3) updates the alternating color scheme
I need help with
…
0
votes
5answers
68 views
Sorting a table in PHP
Hi,
I have some difficulty sorting my array. It looks like this :
[0] => Array
(
[firstname] => Jnic
[lastname] => Fortin
[points] => Array
…
0
votes
1answer
70 views
Gridview sort reveals far more than anticipated!!!
Hello all, I need some help here, I'm currently going round in circles.
I have a gridview that is populated based upon a radio button item selected :
protected void btnSubmit_Click(object sender, …
3
votes
8answers
520 views
What’s the efficiency and quality of this shuffling algorithm?
This recent question about sorting randomly using C# got me thinking about the way I've sometimes shuffled my arrays in Perl.
@shuffled = sort { rand() <=> rand() } @array;
The proposed …
7
votes
7answers
134 views
Generating sorted random ints without the sort?
Just been looking at a code golf question about generating a sorted list of 100 random integers. What popped into my head, however, was the idea that you could generate instead a list of positive …
0
votes
1answer
217 views
How to sort a DataView in a case-insensitive manner?
I have a DataTable. I'd like to sort its default view by a column name 'city'. I'd like the sort to be case-insensitive.
Here is the code I have:
DataTable dt = GetDataFromSource();
…
2
votes
2answers
164 views
Sorting strings containing numbers in a user friendly way
Being used to the standard way of sorting strings, I was surprised when I noticed that Windows sorts files by their names in a kind of advanced way. Let me give you an example:
Track1.mp3
Track2.mp3
…
1
vote
4answers
117 views
C# Sort List by multiple conditions
I need to sort some soccer standings. My problem is how to sort in the right order.
Sortorder:
Points DESC
Approximation match
Goal difference DESC
Goals scored DESC
Goals against
Input:
TeamName …
5
votes
7answers
1k views
Is there a sorted collection type in .NET?
I'm looking for a container that keeps all its items in order. I looked at SortedList, but that requires a separate key, and does not allow duplicate keys. I could also just use an unsorted …
-1
votes
1answer
175 views
Median of Medians in Java
I am trying to implement Median of Medians in Java for a method like this:
Select(Comparable[] list, int pos, int colSize, int colMed)
list is a list of values of which to find a specified …
1
vote
0answers
28 views
Excel Find Speed vs. VBA binary Search?
How good/fast is Excel VBA's Find vs. binary search? My platform is Office 11|2003 and I'll be searching for strings against Column A on three sheets of values. Total number of rows ~140,000
If …
7
votes
8answers
194 views
Pre-sorting analysis algorithm?
It's a well-known isssue with Quicksort that when the data set is in or almost in sort order, performance degrades horribly. In this case, Insertion Sort, which is normally very slow, is easily the …
0
votes
5answers
72 views
Sort Ascending or Descending inside a Bubble-Sort
After this was answered I continued to work my way through the code.
It work's perfect this way:
static String[][] bubbleSort(String customerdata[][], int sortafter, int asc)
{
String temp [];
…
