Sorting is the process of applying some order to a collection of items.
0
votes
1answer
28 views
Sorting Table is wrong when the sort button be pressed more than once?
I have a Problem here. I create program to add data to the table and sort it when i press the button. when i press the sort button once, it isn't wrong. but when i press again it is wrong. so why? ...
0
votes
2answers
55 views
Multi-level sorting on strings
Here is a same of the raw data i have:
Sana Paden,1098,64228,46285,2/15/2011
Ardelle Mahr,1242,85663,33218,3/25/2011
Joel Fountain,1335,10951,50866,5/2/2011
Ashely Vierra,1349,5379,87475,6/9/2011
...
2
votes
2answers
87 views
C# List<string> sort issue [closed]
I have a List looks like:
List<string> newList = new List<string>() { "10S", "XS", "80", "5S", "160", "40S", "80S", "STD", "40", "XXS" };
And I want to sort it to
{ "40", "80", ...
0
votes
4answers
20 views
Swap/exchange array keys php
Lets say I have an array:
Array
(
[0] => 18208021789
[1] => Ziggo-Humax iHDR5050C
[2] => 191.90
[4] => Something
[5] => foo bar
}
And I want to change replace the ...
1
vote
1answer
36 views
Sorting multi-dimensional associative array in PHP
I have a PHP array that looks like this:
array (size=1)
'Marriot' =>
array (size=7)
0 => string 'doc5.txt' (length=8)
1 => string 'test.txt' (length=8)
2 => ...
0
votes
1answer
12 views
No Input while sorting a stack
There are 3 stacks - A, B, C
Stacks A and B are sorted (the number on the top of the stack is the biggest). Stack C is Empty Only 5 operation are allowed:
push, pop, top, is_empty, create
We need ...
3
votes
3answers
93 views
Sort a Huge file
I want to sort a huge file of approx 20M rows:
ascending on Team Name and
then descending on highest score.
so I can get the highest scorers per team.
I want to be considerate of system's ...
0
votes
1answer
19 views
powershell send pipe input to pipe
I have a script that accepts piped parameters.
I can't be sure that the user has already piped their input through Sort-Object before piping to my script so I want to send the piped input out for ...
0
votes
0answers
24 views
Best Sorting OpenCL algorithm
I am writing code in OpenCL for AMD APU (northern island GPU) and AMD evergreen GPU. I have to sort a huge array of integers and I have to do it efficiently (less memory usage and least execution ...
0
votes
0answers
9 views
In Sharepoint, how can I sort a list based on a hyperlink?
I'm working on setting up a project dashboard using a custom list. It's all in-browser and I believe it's 2007, but I don't know how to tell for sure. One of the columns is the "Project Stoplight". ...
-4
votes
2answers
55 views
Sorting String Array by Last Name from a File [closed]
I have a .txt file which contains pairs FirstName LastName, like this:
Sam Foster
Jack White
John Abner
Mike Briggs
Sarah Mills
(No bullets, of course) The delimiter is space. Task is to sort ...
1
vote
2answers
78 views
How Can I Sort a Dynamically Created JavaScript Object by Value?
I have a JavaScript object that I am adding to using the .push(), but the problem is that when I push data to the object the object is no longer in order by time values. How can I create this same ...
0
votes
1answer
17 views
Sorting dropdowns based on their contents
So I have a sort that is alphabetizing a dropdown:
$(".product-actions select").each(function() {
// Sort all the options by text. I could easily sort these by val.
$(this).html($("option", ...
-1
votes
1answer
47 views
PHP vs Javascript when creating sophisticated sorting algorithm [closed]
I am wondering if it makes sense to do a sophisticated sort algorithm to data retrieved from mysql using javascript instead of relying on mysql queries and php to do selection and sorting based on ...
1
vote
1answer
18 views
Programmatically Local Sorting on Server Data jqGrid
I have a server-side data bound jqGrid. I just want local sorting when the sorting-button is clicked.
I have done this:
$(document).ready(function () {
$("span.s-ico").click(function () {
...
0
votes
0answers
21 views
Fastest way to find 5%ile from 2D numpy array?
I know that there is numpy.percentile(myArray,5), but I understand that behind the scenes this will first do a complete sort of the array, which is inefficient if I only need the smallest 5% of values ...
0
votes
1answer
44 views
Conversion failed when converting date and/or time from character string
what i am doing is using own function , which is returning string , now i want this colun for ordering , and while using it for ordering it is not ordering properly because its a string , when i tried ...
0
votes
0answers
16 views
How to Store the JsonData into the Array Wheel Adepter
Hi Guys I am new in android and i want to know how to sort the data which is come from Json String.
Here Is the Code of Getting the Key and Value of the Json and Stored it in Wheel Adapter.It ...
0
votes
4answers
73 views
Sort array on key value
I have a function which sorts by name currently and an array of value / key pairs.
I wonder how can I pass the key on which sort is being performed so I can call same function every time like so:
...
-4
votes
1answer
45 views
Sorting a nested map based on value of inner map [closed]
I want to sort the complete map in descending order, the stucture of the map is below
SortedMap<String, SortedMap<String, Long>>
I want to sort by the Long value of the inner SortedMap. ...
1
vote
4answers
80 views
What is the alternative to Comparator<T> when using composition over inheritance?
While refactoring a Java project to use composition and no inheritance, I have remaining a problem where polymorphic sorting of Collections was performed.
Inheritance example:
public class AClass
{
...
1
vote
1answer
13 views
Hadoop stream sorting
Could anyone help on this hadoop streaming sort problem? Thanks for any suggestions in advance.
I am newbie on Hadoop and need to implement a sort function on a 500GB tab delimited text file. The ...
0
votes
2answers
31 views
Rails - order by, with grouped_collection_select
This input select box shows a list of issues based on the selection of another input select box that displays the values in my School.rb model. But, this lists the issues by the issue_id. I need it to ...
1
vote
3answers
46 views
How can I change this function call and algorithm to find the string with the smallest value in a list of size n. w/o the min function
How can I change this function call and algorithm to find the string with the smallest value in a list with size n. Also I am aware of the built-in min function, I am simply trying to understand the ...
0
votes
3answers
55 views
alphabetizing a list from a single string
I'm trying to create a program that takes in a single string and sorts the words by alphabetical order, this is what i have at the moment but nothing is printing out:
System.out.println("Enter words, ...
0
votes
2answers
41 views
single string list- alphabetizing
I'm trying to write a code that uses a scanner to input a list of words, all in one string, then alphabetizer each individual word. What I'm getting is just the first word alphabetized by letter, how ...
2
votes
2answers
137 views
Haskell <<loop>>
With "getIndex" I want the index of the first sublist which length is > y
The Output is:
[[],[4],[4,3],[3,5,3],[3,5,5,6,1]]
aufgabe6: <<loop>>
why getIndex does not work?
import ...
3
votes
1answer
53 views
reverse numerical sort for list in python
I'm trying to create python implementations from an algorithms book I'm going through. Though I'm sure that python probably has these functions built in, I thought it would be a good exercise to learn ...
0
votes
3answers
89 views
C++ Sorting an array
I'm following a set of beginner assignments I found on a forum for c++, but I'm totally stuck at a task now.
The task is as follows:
Write a program that asks the user to enter the number of ...
1
vote
1answer
34 views
Caching sortable/filterable data in Redis
I have a variety of data that I've got cached in a standard Redis hashmap, and I've run into a situation where I need to respond to client requests for ordering and filtering. Order rankings for name, ...
3
votes
5answers
129 views
Sorting an array of strings in Ruby
I have learned two array sorting methods in Ruby:
array = ["one", "two", "three"]
array.sort.reverse!
or:
array = ["one", "two", "three"]
array.sort { |x,y| y<=>x }
And I am not able to ...
1
vote
6answers
85 views
Sorting an array alphabetically in C#
Hope someone can help.
I have created a variable length array that will accept several name inputs.
I now want to sort the array in alphabetical order and return that to the console screen.
I thought ...
0
votes
2answers
64 views
Bitonicsort C code segmentation issue
I am running a bitonic sort sequential code on a machine. It runs fine for array size upto 16 elements but as soon as i increase the size to 32 It gives the following error while execution:
" ...
-1
votes
2answers
29 views
Unix: cat-ing a file out to itself - why does this blank the file? [duplicate]
Can someone please explain to me why this code works (i.e. file2.txt is the alphabetically sorted contents of file1.txt):
cat file1.txt | sort > file2.txt
But when I do this, file1.txt blanks ...
0
votes
1answer
11 views
How to sort by key AND value in SICStus Prolog?
I have a list like
L = [0-4, 0-3, 3-5, 1-2]
and I would like to sort the list by key and value so the result would be
L = [0-3, 0-4, 1-2, 3-5]
I found keysort but it sorts only by key. I can ...
-3
votes
3answers
42 views
Is that possible to sort HashMap by Arrays.sort [closed]
I would like to sort an array using Arrays.sort. I know that it should be done by Collections.sort but the teacher wanted use of Arrays.sort is that possible? I would like to pass comparator.
0
votes
1answer
24 views
Big(0) running time for selection sort
You are given a list of 100 integers that have been read from a file. If all values are zero, what would be the running time (in terms of O-notation) of a selection sort algorithm.
I thought it was ...
-1
votes
0answers
16 views
taking a photo in an app and saving in it inside the app using a cover flow or iCarousel [closed]
Hi I am new to Xcode and I have trouble with some parts of the app. I tried many times but id does not work as a whole.
I want the app to be designed like this
1.User pushes the photo button in the ...
0
votes
1answer
48 views
How do i sort data in text file with Java? vol#2
I'm trying to sort data I have in a text file. Each row of the file contains the fields:
name,surname,age,weight,height
I tried to split each line up by using Peter Dolberg's Java code - but it ...
0
votes
1answer
18 views
Sorting data into categories and showing category headlines
In AngularJS, for the given dataset of animals, what is the best way to produce both the personality view and the size view?
Personality view
Animals by personality:
Cute
Cat
Dog
Scary
...
0
votes
1answer
28 views
Removing the sort arrow from DataGrid programmatically in WPF
In my WPF application, I have a DataGrid with some columns that displays my sortable data. The user can sort and subsort whichever column he wants.
I added a button that should clear the sorting and ...
0
votes
1answer
39 views
How to sort a large text file's data into a multi-dimensional array?
I have a very large data file. It starts off with a big paragraph that I want to ignore or remove from the equation, then it has a year e.g. 1974, then 6 spaces, then a number to represent a month, ...
2
votes
3answers
76 views
Sorting lists in python issue
I started learning python few days ago (with no prior programming experience nor knowledge) and am currently stuck with the following thing I do not understand:
Let' say I have an unsorted list "b" ...
-2
votes
0answers
44 views
What's an efficient algorithm for finding free sub intervals when given a list of intervals and a list of occupied sub intervals?
Given a list of intervals A = (start1, end1, start2, end2...startN, endN) and a list B of subsets of those intervals (start1', end1', ...startN', endN') find the list C of subsets of A that don't ...
1
vote
2answers
57 views
How to sort ArrayList based on a variables value [duplicate]
I have one ArrayList<Users> users_list; and in users i have name, surname, age etc. I want to implement an sorting algorithm that will sort my arraylist based on users age. I searched a lot but ...
5
votes
2answers
58 views
Sorting multiple values by ascending and descending
I'm trying to sort an array of objects based upon different attributes. Some of those attributes I would like to sort in ascending order and some in descending order. I have been able to sort by ...
0
votes
1answer
29 views
Coq string sort lemmas
I have a string sort function defined as below and want to prove a lemma
sort_str_list_same below. I am not Coq expert, I tried to solve it using induction, but could not solve it. Please help me ...
1
vote
1answer
25 views
Change default position of product in categories from 1 to product ID in Magento 1.7.0.2
In Magento 1.7.0.2, I am adding a lot of products from the backend but the positions of these new items in their corresponding categories are 0 or 1. So when sorting on the frontend, I get arbitrary ...
0
votes
3answers
26 views
Sort array by keys numeric first than ascending by string
I have an array:
array(1,'Test','Jonathan')
and id like to end up with:
array(1,'Jonathan','Test')
How do i accomplish this using PHP?
0
votes
2answers
42 views
Smart sorting by function of geo and int
I'm thinking about ways to solve the following task.
We are developing a service (website) which has some objects. Each object has geo field (lat and long). It's about 200-300 cities with objects can ...




