The sorted tag has no wiki summary.
1
vote
2answers
36 views
Insert in a sorted Array-Queue
I'm working on sorted Queues like a Priority Queue. I already did it with a List, and it already worked great. Now I'd like to do it with a array. But I have a little logical Problem with add a new ...
1
vote
1answer
52 views
Convex hull algorithms for sorted set of points
I need an algorithm for computation convex hulls for sorted set of points in 3 and higher dimensions. Also I need in lower part of a convex hull and it is not necessary to construct a whole convex ...
0
votes
0answers
14 views
sort html table rows alongwith rows with tr=“display:none”
I have html table with 8000 rows. I use a list-box control to restrict number of rows displayed - 10,20,100. Also, I use sortable table headers to sort the table when clicked on a particular table ...
0
votes
1answer
22 views
What event handler can I use to tell when a DataGrid control has finished sorting?
I am simply wondering what event handler I can use to tell me when a DataGrid control has finished sorting. I know there is an event for Sorting, but I can't seem to find anything for when it has ...
0
votes
1answer
33 views
Pattern for Frequently Updated Sorted Data
Let's say you're composing a blogging website. It displays recent blog posts by multiple authors sorted by "priority". Highest priority on top. Priority is determined by some formula involving:
...
-1
votes
0answers
91 views
Combine the programme of priority queue based amd a sorted linked list [closed]
I want to implement a priority queue based on a sorted linked list. The remove operation on the priority queue should remove the item with a smallest key.
That means how to combine the programme of ...
-1
votes
0answers
125 views
I want to implement a priority queue based on a sorted linked list [closed]
I want to implement a priority queue based on a sorted linked list. The remove operation on the priority queue should remove the item with a smallest key.
That means how to combine the programme of ...
1
vote
3answers
126 views
How to use properly SortedDictionary in c#?
I'm trying to do something very simple but it seems that i don't understand sortedDictionary.
What i'm trying to do is the following :
Create a sorted dictionary that sorts my items by some floating ...
0
votes
2answers
52 views
Sorted array and finding sum with complexity O(n)
We have sorted array arr[]={2,4,5,7,8,12,16,18,20}.
We need to find out pair of elements whose addition is 12, with complexity O(n).
Could anyone help on it?
2
votes
1answer
92 views
Is it possible to use CUDA in order to compute the frequency of elements inside a sorted array efficiently?
I'm very new to Cuda, I've read a few chapters from books and read a lot of tutorials online. I have made my own implementations on vector addition and multiplication.
I would like to move a little ...
0
votes
2answers
100 views
efficient method for merging 2 sorted files with duplicate coordinates in python
I am relatively new to Python, and trying use it to merge two sorted files which contain 4 columns:
file 1:
x-coordinate, y-coordinate, data 1, data 2
1, 10, 20, 0
5, 15, 1, 2
...
file 2:
...
2
votes
1answer
65 views
Sorting strings in python doesnt work [closed]
I'm trying to sort this list ['a', '2%20q'] I hoped to see ['2%20q', 'a'] but the code below produces ['a', '2%20q'] (initial list left intact)
sorted(['a', '2%20q']) // output: ['a', '2%20q']
7
votes
2answers
134 views
Add keys in dictionary in SORTED order
Suppose I have a dictionary
{1:5, 2:5, 4:5}
Is there a data structure such that if I add the key-value pair 3:5, to have it entered in the dictionary so that the keys are in sorted order? i.e.
...
0
votes
1answer
351 views
Searching a Sorted List using Binary Search (C#)
The requirement is to search an alphabetically ordered/sorted list (of string type) using a binary search method for a specified string (in the example below it is "yz") and return the results (every ...
1
vote
0answers
323 views
Correct implementation of the Median of two sorted arrays
I just tested myself on implementing median of two sorted arrays like described here: http://www.youtube.com/watch?v=_H50Ir-Tves.
Is this implementation correct? Thank you in advance. Katarina
PS: ...
1
vote
1answer
56 views
Python Sorted: Sorting a dictionary by value (DESC) then by key (ASC)
Just after discovering the amazing sorted(), I became stuck again.
The problem is I have a dictionary of the form string(key) : integer(value) and I need to sort it in descending order of its ...
0
votes
0answers
44 views
Multiple insert into an AVL tree
I have an AVL tree from which I know that there exist two sets of keys, one set where all keys are less than the keys from the sorted array and another where all keys are greater than the keys from ...
1
vote
1answer
190 views
Java Generics: Sort Map by Value
Trying to compile the following function that sorts a generic map I get this error:
"The method compareTo(V) is undefined for the type V"
Please help to make this work!
public class ...
0
votes
1answer
352 views
Sorted Insertion in a doubly linked list
I'm trying to implement a code in to insert a node containing an integer variable into a doubly linked list which is either already sorted or has no elements in it. I've been provided with a file to ...
1
vote
1answer
33 views
Compression of sorted data with small difference
I have sorted data sequence of integers. Maximal difference between 2 numbers is 3. So data looks for example like this:
Data: 1 2 3 5 7 8 9 10 13 14
Differences: (start 1) 1 1 2 2 1 1 1 3 1
Is ...
0
votes
0answers
73 views
How do you find median in a 2D sorted array?
Lets say you have a Matrix of numbers that are sorted across rows as well as column.
How do you find the median.
I searched on net and found lot of answers like:
There is an algorithm to find ...
0
votes
1answer
164 views
C++ Building a Sorted Link List from a Loop
I've been banging my head against the wall for about 3 hours now trying to come up with the fix for this but I can't figure it out. My test program is written as such...
int main()
{
...
1
vote
4answers
74 views
How do you sort the output of a python command?
Python beginner here. Let's say that I have something at the end of my script that queries info from a system and dumps it into this format:
print my_list_of_food(blah)
and it outputs a list like:
...
0
votes
1answer
33 views
python (and AWS): having trouble sorting list of S3 keys by date
I have the following block of python code
b = c.get_bucket(bucket)
lst = []
for prfx in prefix_list:
for f in b.list(prefix=prfx):
lst.append(f)
sorted(lst, key=lambda kk: ...
0
votes
1answer
103 views
Sort the assets folder with Andengine
Google translator
I'm making a game with Andengine and inside the folder "assets" I have three folders gfx, mfx, font (protected folders are there more?)
The folders are full and it works fine.
On ...
1
vote
2answers
93 views
How sorted lambda with two keys?
i'm uses this
ThreadList.append([''.join(map(str,[Thread])), date, rrf[5]])
SendThreadList = ''
ThreadList = sorted(ThreadList, key=lambda Entry: Entry[1], reverse=True)
ThreadList = ...
2
votes
2answers
727 views
Excel VBA Generating a random number in order and according to how many
G'day,
I have a tricky problem with getting random numbers in sorted order according to how many I need by either VBA code or formula within VBA. This need is generated randomly between 1 and 10.
...
-2
votes
1answer
54 views
transform functions to macros in lisp [closed]
I have these functions for sorted list and I have to transform them to macros could somebody help me or tell me about some books or sites which have some useful and complete examples of macros because ...
2
votes
1answer
223 views
Two column CSV data sort - one column str(ascending) the other column date(descending)
I am interested in knowing how to perform a two-column sort of a CSV file where one column is ascending while the other is descending and need to be parse into an understandable date format.
import ...
0
votes
3answers
102 views
Sort a list numerically in Python
So I have this list, we'll call it listA. I'm trying to get the [3] item in each list e.g. ['5.01','5.88','2.10','9.45','17.58','2.76'] in sorted order. So the end result would start the entire list ...
0
votes
2answers
111 views
Map groupBy with multi-sort
Going a bit nutty here trying to multi-sort on the following.
case class WeeklyResults(
schedule: Schedule,
result: GameResult
)
val games = // returns correctly sorted List of WeeklyResults
...
2
votes
3answers
374 views
python sorted function with user defined cmp functions
I want to order the items in a dictionary using various comparator functions.
Please see my example code below. It is the last part using cmpRatio function with sorted() that does not work. I am not ...
0
votes
1answer
690 views
Java sorted Doubly Linked List add method
I have been having some extreme difficulties with an assignment that I have been given.
The assignment is to create 4 different data structures, LinkedList, DoublyLinked list, deque, and sorted ...
0
votes
2answers
193 views
Algorithm that gets the largest sorted sub array from an array
I am trying to do something in C and I need an algorithm that returns the largest dimension wise sorted array contained in another array. So, for example if I have the following array:
A[5] = {5, 2, ...
1
vote
2answers
84 views
Print an ordered linked list
Just did some editing on it, i tried what you said but it didnt work, so i tried something i am a little more familiar with but it doesnt seem to work correctly. It prints the information weirdly then ...
2
votes
3answers
248 views
Algorithm to get the number of sorted combinations?
Say there are "n" numbers from which we select "p" numbers (p less than n) such that the selected "p" numbers are sorted. A selected number can be repeated. How can we calculate the number of ...
2
votes
1answer
74 views
best way to store the long list of values
I need to store a list of processed network file shares (keeping the full UNC path) in memory so I do not process these folders again.
I was going to use an array but now I am thinking that a ...
3
votes
1answer
340 views
flot - legend entries and stacked bars have reverse order
I ran across another small stacked bars issue: When filling the plot, flot adds the legend entries top-down and stacks the bars bottom-up. This way the legend is ordered exactly reverse from the bars. ...
-1
votes
3answers
165 views
sorting distance in MySQL PHP [duplicate]
Possible Duplicate:
mysql_fetch_array() expects parameter 1 to be resource, boolean given in select
My Code:
<?php
$Sql="SELECT *, (3959 * acos(cos(radians(37)) * cos(radians(44)) * ...
0
votes
0answers
237 views
Solr sort by date not working
I'm just trying to do a simple query that returns all fields sorted by a specific date but it is not working. I know it's a dumb question but I'm a newbie to solr. I have something like this:
...
1
vote
0answers
168 views
How to add row to sorted datagrid view
I have a DataGridView bound to a database Table. Visual Studio created the grid and a binding navigator Toolstrip. Navigating, Insert, Delete are working fine...
BUT:
If I sort the grid by clicking on ...
1
vote
1answer
401 views
Finding the pivot point in a rotated sorted array
First let me say that I am new to C so my approach is basic. I am attempting to check a sorted array for a point where it was rotated. For example (1 2 4 5 9) becomes (5 9 1 2 4). I am attempting ...
1
vote
2answers
138 views
Is there a Dojo list container that sorts child widgets automatically?
I'd like a graphical container that I can add and remove my custom widgets to where I can set a sort function that is automatically applied when these operations take place.
Is there a suitable ...
0
votes
1answer
191 views
Using a binary search algorithm as a basis to implement a binary insert
This one is probably going to be straightforward for you but it's had me really stumped.
I've been reading up on arrays in Java in an algorithms book and in the chapter on inserting and searching for ...
-6
votes
2answers
125 views
C# sort a string array
I need to sort a string array like below.
<MP:F> SG10.01,"SG1 ANTA H 2300 MHz Mod",#.##," dB",LIM,23.00,34.00
<DATA> GEN_FREQ,2300e6,,MESSAGE,"Action: Connect the external PM power sensor ...
6
votes
3answers
303 views
simpest way to get the longest sequence of sorted elements from a given unsorted integer vector in c++
I have an unsorted array and need to extract the longest sequence of sorted elements.
For instance
A = 2,4,1,7,4,5,0,8,65,4,2,34
here 0,8,65 is my target sequence
I need to keep track of the index ...
-1
votes
1answer
38 views
Do I need to create a new variable to store result of merge sorted list sequence?
I think I've done the right thing by not creating a new topic. Please correct me if I'm wrong.
I've been given a question where I need to merge two sorted list-based sequences:
S1 = (1,5,8,12) S2 = ...
2
votes
3answers
100 views
Does it pay off to use a generator as input to sorted() instead of a list-comprehension [duplicate]
Possible Duplicate:
sorted() using Generator Expressions Rather Than Lists
We all know using generators instead of instantiating lists all the time saves time and memory, especially if we ...
2
votes
2answers
507 views
Redis sorted set by string values
Suppose you have a hash 'users' whose entries map numeric IDs to JSON-encoded arrays, so, for instance, the integer 1 maps to the string {name: 'John', surname: 'Doe', occupation: 'plumber'}.
The ...
1
vote
2answers
195 views
how to insert an element into an order array
let's say I have an array of ints that is sorted in ascending order, and I want to insert a new number and I know at what position to insert it. How could I use System.arraycopy.
...


