0
votes
3answers
39 views
Sorting DataTable-columns
I have a datatable something like this:
| Col1 | Col6 | Col3 | Col43 | Col0 |
---------------------------------------------------
RowA | 1 | 6 | 54 | 4 | 123 |
…
0
votes
1answer
22 views
Default list of Django built-in middleware
Django comes with a list of built-in middleware, but if one wants to use all (or most) of them, he has to work through tons of docs in order to get the right sorting in the settings.py file.
Is there …
0
votes
3answers
50 views
Sorting arrays numerically
I have a PHP array that I need to sort. I have included the example array below. I need to put the top 10 number of URLS plus their perspective counts in a different array. I know I could run into …
1
vote
2answers
56 views
What is the preferred technique to convert an object’s properties to a sorted list of tuples?
I'm working with an open-source library and they define a class like so:
class Provider(object):
""" Defines for each of the supported providers """
DUMMY = 0
EC2 = 1
EC2_EU = 2
…
0
votes
4answers
60 views
How can I do a sort and search using both GET and POST variables?
I am currently using column header's as links that when clicked will sort the results by the column name by adding a get variable to the url. Here is an example:
<a href="
<?php
// Sorts by …
1
vote
3answers
92 views
struct - sorting a c-string with qsort
I'm sorting a bunch of IPs, but for some reason they come in the wrong order. I'm not quite sure where could be the problem.
66.249.71.3
190.148.164.245
207.46.232.182
190.148.164.245
…
2
votes
4answers
39 views
MySQL sort by name
Is ir possible to sort a column alphabetically but ignoring certain words like e.g 'The'
e.g.
A normal query would return
string 1
string 3
string 4
the string 2
I would like to return
string 1
…
0
votes
2answers
33 views
How to enable sorting on a PagedList<T>
Hi there!
Im hoping that someone has used the very excellent PagedList from Troy Goode? Im actually using it in a Winforms app, and while it does work, I have lost the ability to sort it.
Returning …
0
votes
3answers
64 views
Quicksort to order array by business key?
Hi,
I've an array of objects, the size of which I cannot predict. The contents of the array are model objects with properties of type nsstring and nsnumber.
I need to sort the array according to one …
0
votes
2answers
83 views
which is the correct text comparison method for an international application…AnsiCompareText or CompareText?
i'm using delphi 2009 to write an app that uses an Access database.
i noticed that MS Access' ORDER BY seems to be sorting international character sets like AnsiCompareText whereas throughout my app, …
1
vote
2answers
27 views
Sorting by unknown column type in mysql
So I've got a users table; storing things like username, email, etc.
I then have a user_settings table. Instead of standard columns like timestamp_logged_in, profile_views, etc., I have it organized …
0
votes
4answers
35 views
How to reverse the default ordering in Mysql?
In Mysql, when you execute a select SQL statement, there is a default ordering if you don't include a sorting clause, how to reverse the default ordering? Just add DESC?
0
votes
1answer
62 views
Shell Sort problem
Show the result of running Shell Sort on the input 9,8,7,6,5,4,3,2,1 using increments { 1,3,7 }.
I have done this part.
the result is:
9 8 7 6 5 4 3 2 1 (original)
2 1 7 6 5 4 3 9 8 ( 7-sort )
2 1 4 …
2
votes
2answers
75 views
Get a reverse iterator from a forward iterator without knowing the value type
I'm trying to implement some STL-style sorting algorithms. The prototype for std::sort looks something like this (from cplusplus.com):
template <class RandomAccessIterator>
void sort ( …
1
vote
5answers
59 views
How to unit test the sorting of a std::vector
I have never used unit testing before, so I'm giving CxxTest a go. I wrote a test to check if a function correctly sorts a std::vector. First I made sure the test failed when the vector wasn't sorted, …
