Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
5k views

Randomize a sequence of div elements with jQuery

I'm trying to do my frist steps with jQuery but I have some trouble to understand how to find a list of child elements from a div parent element. I'm used to work with ActionScript 2 and ActionScript ...
11
votes
5answers
260 views

Sorting a partially sorted array [closed]

Possible Duplicate: Interview Q: sorting an almost sorted array (elements misplaced by no more than k) I have a partially sorted array with the property that every element is within d units ...
10
votes
6answers
1k views

What is the fastest search method for a sorted array?

Answering to another question, I wrote the program below to compare different search methods in a sorted array. Basically I compared two implementations of Interpolation search and one of binary ...
6
votes
12answers
347 views

java Arrays.sort

Why are both temp and dopas sorted after the following call to Array.sort? System.out.println("Before"); for (int i = 0; i < POP; i++) { System.out.println(dopas[i]+""); } ...
6
votes
2answers
499 views

Search algorithm and its complexity

I was asked this question in an interview: Assume an infinite array of integers which is sorted. How would you search for an integer in this array? What would be time complexity? I guessed what the ...
6
votes
4answers
23k views

How to sort a date array in PHP

I have an array in this format: Array ( [0] => Array ( [28th February, 2009] => 'bla' ) [1] => Array ( [19th March, 2009] => 'bla' ...
5
votes
3answers
57 views

How to sort array with respective array ids or values?

I have two arrays: String [] ids= new String [5]; String [] points= new String [5]; String one="a,b,c,d,e"; //or String one="nepal,japan,finland ,brazil,spain"; String ...
5
votes
8answers
100 views

How to sort an array in JavaScript

I am not using an associative array. I'm using 1d array like this, array("1,a","5,b","2,c","8,d","6,f"); How can I sort this array? The result should be, array("1,a","2,c","5,b","6,f","8,d");
4
votes
2answers
50 views

Sort Array rows by another array in python

I'm trying to sort the rows of one array by the values of another. For example: import numpy as np arr1 = np.random.normal(1, 1, 80) arr2 = np.random.normal(1,1, (80,100)) I want to sort arr1 in ...
4
votes
1answer
59 views

trying to sort a array of arrays using php.. pulling hair out?

I am in the middle of doing a quick prototype of some statistical graphs using FLOT and php and i am literally hacking something together to show something. However i am faced with a problem which is ...
4
votes
5answers
505 views

PHP Sort function for sorting an array of objects

I have an array full of objects from the same class. I'd like to sort this array by optional object field, for instance $case->ID or $case->Sender Is there a built in flavor of the array_sort() ...
4
votes
2answers
3k views

How do I move an array element with a known key to the end of an array in PHP?

Having a brain freeze over a fairly trivial problem. If I start with an array like this: $my_array = array( 'monkey' => array(...), 'giraffe' => array(...), ...
3
votes
3answers
118 views

How to sort N lists by the total sum of elements of each list with Mathematica?

Given a list containing k sublists, let A={{a1,a2,a3,...},{b1,b2,b3,...},...}, I want to sort those sublists by their Total[A[i]]. Is there any efficient way to make this?
3
votes
3answers
64 views

Sorting: Sort array based on multiple conditions in Ruby

I have a mulitdimensional array like so: [ [name, age, date, gender] [name, age, date, gender] [..] ] I'm wondering the best way to sort this array based on multiple conditions...For ...
3
votes
3answers
160 views

php multidimensional sort

I have an a couple of arrays like so. Array ( [state] => Array ( [0] => WA [1] => CA [2] => CA [3] => NV [4] => MO [5] => CA ...
3
votes
2answers
120 views

Sort ArrayList of strings by length

I want to order an ArrayList of strings by length, but not just in numeric order. Say for example, the list contains these words: cucumber aeronomical bacon tea telescopic fantasmagorical They ...
3
votes
3answers
92 views

How do I sort and filter an in-memory array of ORM objects in ColdFusion?

Let's say I have a Store entity that contains a collection of Products. So I grab my Store and Products like this: var store = entityLoadByPK("Store", 13); var products = store.getProducts(); Now ...
3
votes
2answers
211 views

Javascript: sorting arrays that contain dates into descending order

I have the following array: var times = [ ["04/11/10", "86kg"], ["05/12/11", "90kg"], ["06/12/11", "89kg"] ]; I want to list these dates and their corresponding ...
3
votes
1answer
414 views

Sort Perl array in place?

I have a reference to an array (called $intervals) and I would like to sort the values in this array. It's possible that there could be a huge number of values in the array, so I would prefer not to ...
3
votes
4answers
356 views

Using unique() to restructure a vector in MATLAB

Let's say A is a 200 item cell array containing 4 different strings (each has 50 repetitions). B is a 200 item vector with some integers. I'm using [cellNos cellStartInd enumCells ] = unique(A) and ...
3
votes
4answers
193 views

Double sorting an array in PHP

I need to sort an array in PHP and then sort by its second index if the first index is the same. Let me explain : The elements would be randomly arranged : ...
3
votes
3answers
440 views

PHP sort 2d array by index (non-associative)

This code does not run properly, but it suggests what I am trying to do: function sort_2d_by_index($a,$i) { function cmp($x, $y) { // Nested function, can't find $i // (global $i defeats ...
3
votes
6answers
132 views

Sorting an array by a certain key

I have the following array: Array ( [Places] => Array ( [public] => 0 [entities] => Array ( ... ) ...
3
votes
2answers
260 views

Problem with Quick Sort Algorithm

I'm working on a quick sort algorithm in C#, but I'm facing a strange problem which is, among 10 times of executing the algorithm on random numbers, I got 2 or 3 wrong sorting answers. I mean: this ...
3
votes
6answers
489 views

sorting using recursion

I have the following function to sort an unordered array to having even numbers in the front and odd numbers in the back. Is there a way to get it done without using any loops? //front is 0, back ...
3
votes
2answers
307 views

Whats the best way to sort this array in php?

I cant come up with any sane solution for this problem without resorting to ridiculous combinations of custom functions. Maybe you can provide some fresh thought on this. I have the follow ...
3
votes
2answers
750 views

Sorting a Two-Dimensional Array

I am new to PHP. I have a PHP array that is two dimensional. The "inner" array has a value that I want to sort on. For example: $myarray[1]['mycount']=12 $myarray[2]['mycount']=13 ...
2
votes
4answers
31 views

How replace item order in php array?

I asking about this case(replace item by position : highest with lowest etc.. ): my inputs: // case1: array('orange','blue','red'); // case2: array('orange','blue','red','white'); should get ...
2
votes
2answers
55 views

How does a custom sorting function work for multidimensional arrays

I have combed the web to try and give myself some understanding as to what the following means as it pertains to the object below. What does "a" and "b" mean? Why is it significant? ...
2
votes
6answers
151 views

Java - Checking if an ArrayList of String are in alphabetical order

I have an ArrayList called account which contains Strings. I'm trying to write a method that checks if they are in order and returns true or false based on whether they are in order or not. How ...
2
votes
3answers
78 views

How do you make an object return a sorted array instead of an empty one in python?

I'm trying to create a library of some common algorithms so that people will be able to use them easily. I created an object called Compare, which has some methods that would be useful in these ...
2
votes
6answers
47 views

Extracting Multiple Integers from a string in Javascript

I'm trying to set up my page so a user is able to type in a string like "25a89ss15s9 8 63" and it alerts the user "25, 89, 15, 9, 8, 63" and then further alerts the user "8, 9, 15, 25, 63, 89". So I'm ...
2
votes
2answers
80 views

what's the best sorting algorithm for multi-thread programming?

I want to sort an array of ints with a length of 1.000.000 to 100.000.000 . I want to run this program on a core2duo computer with 2Mb cache using pthread library. I want the fastest algorithm! I ...
2
votes
2answers
91 views

sort a list of dictionary of dictionary in python

I just want to sort by first_name this list in python list = [ { "profile" : { "first_name" : "a", "last_name" : "b" } } , { "profile" : { "first_name" : "c", "last_name" : "d" } } , ...
2
votes
3answers
100 views

array_multisort with natural sort

Is it possible to sort multiple dimensional array by multiple columns using natural sort in PHP? Here is an example. Suppose I have a 2D array of data, e.g., $array[1]['Name'] = 'John'; ...
2
votes
3answers
117 views

how do I sort by nested php array

Another L-plate question.. (I hope I've got the terminology in the question right!) This is an excerpt from the xml feed I'm accessing: And here's my current code: $file = ...
2
votes
1answer
51 views

Sorting nested arrays in JavaScript

I'm totally stuck and blank on how to solve this sort problem. JS object o={"items":[ {"name":"Name 1","types":[ {"type":"Type 4","subtype":"Sub a"} ]}, {"name":"Name ...
2
votes
2answers
90 views

Sorting one array and two others array follow

Suppose we have three arrays a, b, and c: int a[1000] = {3,1,5,4}; int b[1000] = {7,9,11,3}; char c[1000] = {'A','B','C','D'}; Array a is then sorted, so it becomes: a == {1,3,4,5} Is it ...
2
votes
1answer
62 views

Optimal SQL statement or algorithm for finding Most Popular Category of Items in a Database

Assume an element e.g. a youtube video can be of various categories e.g. music, sports, entertainment. I want to look through all elements in a database and output an ordered list of the most ...
2
votes
5answers
100 views

How do you sort multiple types in ruby?

Suppose you have an array of runners: runners = [al, betty, chris, debby] And you have a method time that returns the runners time in the race. In the case that the time method always returns a ...
2
votes
1answer
278 views

How to sort alphabetically a UITableView Sectioned?

I have a sectioned UITableView with 3 categories. I'm using this code: NSArray *arrayOne = [NSArray arrayWithObjects: @"one", @"two", "three", "four", nil]; NSDictionary *dictOne = [NSDictionary ...
2
votes
1answer
136 views

php sort array with three dimensions

I have a three dimensional array and I want to sort the arrays in the first dimension on a value in the third dimension. Like the following: Array ( [0] => Array ( [0] => Array ...
2
votes
1answer
405 views

CUDA, Sort 3 arrays that are already in GPU mem. using Thrust perhaps?

I have 3 arrays of the same size (more than 300.000). One array of float numbers and two arrays of indices. so for each number I have 2 IDs. All the 3 arrays are already in GPU global memory. I want ...
2
votes
1answer
75 views

Simple sorting function fails in IE7

I have been staring myself blind at this piece of javascript code, I need some help. It is a case insensitive sort function that will properly handle special (danish) characters, however it refuses ...
2
votes
1answer
193 views

Sorting NSFetchedResultsController's sections array

Is there a way to sort the sections property of NSFetchedResultsController? Let's say i don't want my sections to be sorted alphabetically ascending, but descending. Or maybe not even alphabetically ...
2
votes
3answers
279 views

sorting dictionary by child key

I understand how to display a dictionaries sorted content by means of obtaining allKeys into an NSMutableArray, sorting the array and using it as an index into the dictionary, but.... What if I want ...
2
votes
2answers
179 views

Find Missing Values in Array of Objects

I have a json array that has multiple missing numbers and is out of sequence. What is the best way to find which numbers are missing? My First thought was to iterate through and construct a new ...
2
votes
1answer
169 views

Run Time Error During Merge Sort

i keep getting a runtime error every time i run this code, the algorithm seems to be right, i am using long values instead of integers because the array's size is large. so what seems to be the ...
2
votes
4answers
163 views

Adding a while and for loop

The question asks: Design and implement an application that first reads a list of 10 three-digit integers and then counts the number of appearances for each digit from 0 to 9. Here is an example of 3 ...
2
votes
3answers
2k views

I want to sort an array using NSSortDescriptor

I am having a problem regarding sorting an array w.r.t database: NSSortDescriptor *sorter = [[NSSortDescriptor alloc] initWithKey:@"w" ascending:YES]; NSArray *sortDescriptors = [NSArray ...

1 2 3 4 5 6