1
vote
1answer
14 views
Ruby sort_by help unpredictable object attribute
I have an array with 2 different types of objects. They all have similar properties, like ratings / title etc...
An example is:
array = array.sort_by { |o| [o.type1.rating] }
Sometimes the array …
1
vote
7answers
130 views
database sort vs. programmatic java sort
hi, I want to get data from the database(MySQL) by JPA, I wand it sorted by some column value,
So, what is the best practice, to:
Retrieve the data from the database as list of objects (JPA), then …
2
votes
7answers
240 views
how to sort an array which is mostly sorted
i have an array like this:
1,2,3,5,6,4
it is 99% sorted and has 40K elements.
i can put them in an array, list, linked list, ...
but i don`t know the fastest way to sort them!
0
votes
2answers
23 views
Sorting grouped nodes by taxonomy term
Ok, here's the problem:
I have a list of contacts, which i have created in views, that are grouped by taxonomy terms like so:
(term:) Staff:
(node:) John Doe
john@doe.com
(node:) Jane …
2
votes
4answers
81 views
Sorting vector in java
I want to sort a vector contains like [a,b,1,3,5,z] both ascending and descending on Java ME, i.e. without using function like Collections.sort()
0
votes
1answer
44 views
Best item from list based on 3 variables
Say I have the following for a bunch of items.
item position
item size
item length
A smaller position is better, but a larger length and size are better.
I want to find the item that has the …
1
vote
2answers
18 views
Save and get arbitrary sort order in MSSQL
My client wants to sort products by drag & drop. The drag & drop part is easy with javascript.
My problem is how do I save and get the sort order?
I'm using .net c# and mssql 2008.
When I …
2
votes
4answers
88 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
5answers
71 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
3answers
35 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
1answer
71 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, …
8
votes
7answers
156 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
3answers
44 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
…
1
vote
4answers
126 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 …
1
vote
0answers
30 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 …
