Sorting is the process of applying some order to a collection of items.
0
votes
0answers
8 views
Ranking algorithms for nodes with subnodes?
I am working on a site where there are nodes that users can vote on (upvotes/downvotes). Each node has a list of subnodes. Users can vote on each of these subnodes as well. Think of the relationship ...
0
votes
1answer
25 views
Sort NSMutableArray with Ties
I have an NSMutableArray, containing 4 objects. Each of these objects has a property of type int that is called score This array is sorted descending on this property. That much is fine.
Now I'm ...
0
votes
1answer
23 views
JTable row sorter - IllegalArgumentException: Invalid SortKey
Can someone help me with this?
It was working until I changed something trying to optimaze it... damn!
This is my table model:
class MyTableModel extends DefaultTableModel {
private ...
0
votes
3answers
19 views
How to sort an NSMutableArray based on multiple attributes and non-attributes (methods)
I having problems to sort an NSArray of custom objects. The NSArray has to be sorted by a method that returns an int value (so it's not an object's attribute) and by an attribute that belongs to the ...
2
votes
2answers
68 views
Linked list sorting function in C++ doesn't stop properly
Many thanks in advance!
So, I've made attempts to make this function work. There are mistakes in the function but cannot catch them.
It seems to me, that I've missed the logic of sorting.
Could you ...
1
vote
2answers
50 views
How to combine two arrays into the one, alternating elements?
Suppose you have array arr[N] of increasing numbers. You have to divide it in two other (Left and Right):
L = {0, 2, 4, 6, 8, 10, ...}
R = {1, 3, 5, 7, 9, 11, ...}
The following algorithm does ...
0
votes
1answer
19 views
Can sort | uniq or sort | awk count repeated values from one column?
Using the following data:
$cat p1.csv
R,3
R,4
S,1
S,2
S,3
R,2
T,4
R,3
ST,4
RST,2
RSTR,4
First sort based on column 2:
$cat p1.csv | sort -t "," -k2
S,1
R,2
RST,2
S,2
R,3
R,3
S,3
R,4
RSTR,4
ST,4
...
2
votes
3answers
27 views
Sorting multiple non-standard columns in a shell script
I have a list of files, with full path, that I need to sort in a bash shell.
The list will look like
/total/path/software/version1.2.3.4/filename.10.cfg -- infomation grepped
...
7
votes
2answers
118 views
Sorting 100 unique numbers by using 40bytes of memory
I've been asked a good programming problem:
In the input I've got 100 unique numbers from 0-255(1 byte). I can only read one number at a time and only once. I've got 40 bytes of memory which I can ...
1
vote
4answers
25 views
Using sort | awk on one column from a csv?
Using p.txt:
$cat p.txt
R 3
R 4
S 1
S 2
R 1
T 1
R 3
The following command sorts based on the second column:
$cat p.txt | sort -k2
R 1
S 1
T 1
S 2
R 3
R 3
R 4
The following command removes ...
0
votes
1answer
29 views
PHP Sorting Files RecursiveDirectoryIterator
I'm listing the files in my subdirectory just fine using the following code
// Create recursive dir iterator and skip the dot folders
$dir = new RecursiveDirectoryIterator('.',
...
-6
votes
1answer
52 views
In PHP, how to sort associative array sorting based on key
I've a nested associative array like the one below and need help sorting the array for each of the keys such as 'first_name' and 'score'.
For example:
Array
(
[12345] => Array
(
...
2
votes
3answers
69 views
Sorting elements with Array.Sort() not sorting the first element
I've been using Array.Sort() to sort an array of string, but for some reason it is keeping the first element of the array and outputting not in order.
private void quicksort1_Click(object sender, ...
-2
votes
3answers
64 views
2d Array sorting by lowest to highest number [closed]
I would like to sort this 2D array so it would output something like this:
1 2 3
4 5 6
7 8 9
and also tell me how many moves it made to rearange. Thank you allot !
Here is my code so far:
...
0
votes
1answer
33 views
Sorting a complex multi-dimensional array
I have this complex array that I need to sort by value that is deep inside the array.
here's the array structure:
$array = array(
array(
'data' => array(
'tree_id' ...
0
votes
3answers
39 views
Alphabetizing a list of hash keys in perl?
I want to make an array that stores an alphabetized list of hash keys. I tried this method:
@sorted = sort { $hash{$a} cmp $hash{$b} } keys %hash;
...But it turns out this returns a list of hash ...
0
votes
1answer
7 views
Solr sorting results
I need to sort my results by field, but not all documents have this specific field. For example, I have products which are real products and have products which are accessories, so if document DOESN'T ...
0
votes
2answers
40 views
Sorting after union all or order by case when
To test these queries I’m running them in the SQL query wizard in Microsoft Access. I’m trying to modify an existing php file in order to display the high priority status alerts (O and P) at the top ...
0
votes
2answers
37 views
How Bucket sort is considered under Linear Sorting?
I would like to explore my analysis regarding Bucket sort as below.
There are many ways that Bucket sort can be implemented. Some of them are as follows.
Type 1:
if we know the range of our elements ...
4
votes
3answers
45 views
Array values into list box
Hey guys currently have the following code
I am trying to insert values into a listbox, and then be able to resort the values by alphabetical order and re display them in the same listbox. For some ...
2
votes
2answers
53 views
Sorting one array in the same order as another array
I have two arrays. Let's say:
array = "Dave", "Mike", "Joe", "Jason", "Kevin"
and
IQ = 110, 145, 75, 122, 130
I want to sort them by IQ. Say Highest to lowest. I can sort one array... and ...
0
votes
3answers
44 views
Python: Sort CSV using a key computed from two columns, grab first n largest values
Python amateur here...let's say here I have snippet of an example csv file:
Country, Year, GDP, Population
Country1,2002,44545,24352
Country2,2004,14325,75677
Country3,2005,23132412,1345234
...
-5
votes
1answer
50 views
Merging a text file in sorting algorithm [closed]
I'm trying to sort a list of numbers taken frm a .txt file and sort it using selection sort (java) ..I have created my codes for selection sort and I have codes to import text file..bt I have problem ...
0
votes
2answers
57 views
sorting html table with a href and php from sql database
I have a html table that contains product data from an sql table that is spit out with php. I'd like to sort the data by clicking the heading of the table column.
I'm outputting my table like so ...
1
vote
2answers
45 views
C# Sorting Generic Lists with CompareTo
I am trying to figure out the correct way to sort a generic list of objects. A quick example of my data structure:
// The base class
public abstract class Item : IComparable<Item> {
public ...
5
votes
5answers
85 views
Javascript: Sort multi dimensional Array based on first arrays sort results
I have an array setup similar to this:
var ary1 = new Array("d", "a", "b", "c");
var ary2 = new Array("ee", "rr", "yy", "mm");
var mdAry = new Array(ary1, ary2);
ary1 and ary2 indexes are info ...
0
votes
1answer
32 views
Sorting After Union All
To test these queries I’m running them in the SQL query wizard in Microsoft Access. I’m trying to modify an existing php file in order to display the high priority status alerts (O and P) at the top ...
5
votes
4answers
163 views
How can I sort but put zeros at the bottom?
I have a list of objects that have a property Rank. This is an integer.
I want to sort by rank on my view but when i do this:
myObjects = myObjects.Orderby(r=>r.Rank);
i get all of the zeros ...
0
votes
1answer
13 views
How to sort by timestamp difference in MySQL?
suppose I have the following table:
name birth(timestamp) death(timestamp)
-------- ---------------------- ---------------------
person1 22-05-2013 21:59:00 22-05-2013 ...
1
vote
1answer
28 views
XML sorting using XSLT
I am new to xslt and want to sort below xml by node
<HAZARDS>
<HAZARD>
<ID>00000000000000000001</ID>
<TEXT>Interior</TEXT>
...
-1
votes
0answers
17 views
QSortFilterProxyModel::sort() vs. ORDER BY
Did anyone compare the speed of sorting in Qt [QSortFilterProxyModel::sort()] and SQLite [ORDER BY]? What's faster?
0
votes
2answers
22 views
xsl:sort does not work together with xsl:choose or if
Im going crazy on this XSL problem i have!
The thing is that i want to sort newspaper after what is choosen in a FORM. If $sort_newspaper = 'name' and it should sort after name (<xsl:sort ...
0
votes
1answer
20 views
Sorting a data.frame in R maintaining row names
I have a data.frame with daily percentage returns of several Managers, I want to sort the data.frame so that to have, for example the best 5 performers and the worst 5 performers.
I found the ...
7
votes
6answers
99 views
Partial ordered Comparator
How to implement java.util.Comparator that orders its elements according to a partial order relation?
For example given a partial order relation a ≺ c, b ≺ c; the order of a and b is undefined.
...
0
votes
1answer
23 views
Unexpected behaviour of convex hull algorithm
I was trying to implement the algorithm to get the convex hull for a given set of points and visualise the result using opencv using the following code on c++:
#include "opencv2/opencv.hpp"
#include ...
0
votes
1answer
56 views
Sort date in Javascript
I have retrieve from ajax query a news feed. In this object, there is a date in this format :
Wed, 22 May 2013 08:00:00 GMT
I would like to sort all objects by date. Is it possible to do this using ...
0
votes
3answers
25 views
Sorting Devexpress ComboBoxEdit date items
I have an issue while sorting out dates in a ComboBoxEdit.
Using this line of code :
cbeDates.Sorted = true
Sorts the items in a weird way. The output is :
01/01/2013
01/02/2013
01/03/2013
....
...
3
votes
1answer
37 views
Sorting JavaScript object arrays based on arbitrary lenght of properties
I have a JavaScript sort array function which takes a string I provide it, which is the name of the property I want to sort by and it sorts my array by that property name.
Thus:
function ...
3
votes
5answers
55 views
Alphabetically sort the array
Array
(
[0] => Jane Smith
)
Array
(
[0] => John Paul
)
Array
(
[0] => Jennifer
)
Array
(
[0] => Paolo
)
Array
(
[0] => Delilah
)
foreach($name as $a){
...
0
votes
4answers
80 views
Moving every element down one in an array (Java)
I've had a decent search and am unable to find working code that moves down an array. What I am hoping to do, is to store the value in the last position in the array, replace the last position and ...
0
votes
1answer
11 views
making Jtable with add,delete,reset and sorting
Hey does anyone know how to make program using JTable with some function with the column that contain variable type: String, Double,Int so it will contain 3 column with different variable
add Row in ...
0
votes
1answer
53 views
How to define a generic sort class
First off let me say that this is related to homework for a class I'm taking on the side. I actually already have the answer for the homework but I decided I wanted to go a step further to help myself ...
1
vote
1answer
36 views
Using NumPy argsort and take in 2D arrays
The aim is to calculate the distance matrix between two sets of points (set1 and set2), use argsort() to obtain the sorted indexes and take() to extract the sorted array. I know I could do a sort() ...
0
votes
3answers
42 views
class that simulates bi-dimensional table in JAVA
public class table
{
private int raw=0;
private int column=0;
private List<ArrayList<Integer>> TABLE ;
private static int COUNT_ELEMENTS_IN_RAW=0;
private static int ...
-4
votes
0answers
37 views
Changing the default look of a homepage [closed]
I have an page that reports logs and has several different columns such as date, user, report, status, etc. Right now when the default homepage is clicked it is being sorted in a reverse order by the ...
0
votes
0answers
52 views
Face Detection & Face Recognition using Opencv with C++
My Project is to write a Program that recognize faces with Video Camera and compare the recognized Face if the recognized face in database. If it not in Database send Email.
I read in google the face ...
0
votes
1answer
66 views
does eight queens backtracking solution require any sorting at all?
Hi I have just sat my final year programming exam, I was asked the question:
what sorting and searching algorithms are used to solve the 8 queens problem.
Correct me if I am wrong but there is no ...
1
vote
3answers
36 views
Compare $Variables Results, and then orden in different Ways
Hello i just finish a code where i get like 50 variables... all of them with int values..
I have the variables as separete values, just for this example I will set the variables with the result, BUT ...
0
votes
1answer
16 views
Java converting upper to lower sorting
I have a program that sorts lines in a text file and puts them in alphabetical order but it can't sort the first word because the first word's first letter is uppercase and that word has to have the ...
1
vote
3answers
85 views
PHP sort random MySQL result based on a column [duplicate]
I have this table (PERSONS) with 25M rows:
ID int(10) PK
points int(6) INDEX
some other columns
I want to show the user 4 random rows which are somewhat close to each other in points. After a lot ...





