Tagged Questions
The sorted tag has no wiki summary.
17
votes
10answers
3k views
Sorted array list in Java
I'm baffled that I can't find a quick answer to this. I'm essentially looking for a datastructure in Java which implements the java.util.List interface, but which stores its members in a sorted ...
12
votes
1answer
45 views
What is wrong with my code - circularly sorted array does not show any results
I had an interview today and the person asked me this question:
How do you find easily an item in a circularly sorted array
Since I didn't know the answer, I tried to find a solution. Here's what I ...
8
votes
7answers
313 views
Automatically sorted by values map in Java
I need to have an automatically sorted-by-values map in Java - so that It keeps being sorted at any time while I'm adding new key-value pairs or update the value of an existing key-value pair, or even ...
6
votes
5answers
303 views
Why does Delphi's TStringList.InsertObject() method thrown an Exception if the list is Sorted?
In Delphi 6 if you try to insert an object into a TStringList that is sorted (Sorted = true) an Exception is thrown warning you that InsertObject() is not allowed on a sorted list. I could understand ...
5
votes
6answers
2k views
The Most Efficient Algorithm to Find First Prefix-Match From a Sorted String Array?
Input:
1) A huge sorted array of string SA;
2) A prefix string P;
Output:
The index of the first string matching the input prefix if any.
If there is no such match, then output will be -1.
...
4
votes
1answer
193 views
Calculating h-index
I need to calculate the h-index from a list of publications i stored in a tree.
What i did is traversing the tree in decrescent order obtaining a list of position-number of citations
it looks like:
...
4
votes
3answers
279 views
Loading an STL set with pre-sorted data, C++
I'm working with C++ in Visual Studio 2010. I have an STL set, which I'm saving to file when my program shuts down. The next time the program starts up, I load the (sorted) data back into a set. ...
4
votes
8answers
579 views
Data structure for efficiently returning the top-K entries of a hash table (map, dictionary)
Here's a description:
It operates like a regular map with get, put, and remove methods, but has a getTopKEntries(int k) method to get the top-K elements, sorted by the key:
For my specific use case, ...
4
votes
3answers
423 views
Is python's sorted() function guaranteed to be stable?
The documentation doesn't guarantee that. Is there any other place that it is documented?
I'm guessing it might be stable since the sort method on lists is guaranteed to be stable (Notes 9th point: ...
3
votes
2answers
73 views
Get the first sorted element with LINQ? (C#)
First, have a look at this code:
Dictionary<int,int> dict = Dictionary<int,int>();
dict[3] = 1;
dict[2] = 2;
dict[1] = 3;
foreach(KeyValuePair<int,int> item in ...
3
votes
6answers
145 views
How can I order a map by value efficiently?
Consider a std::map<K,V>. I want to re-order the map by value profiting by an appropriate container std::C<V*> or std::C<V&>, in a way that no copies of values are done to store ...
3
votes
1answer
60 views
Why haven't Sorted JLists been made part of the standard Swing library yet?
"Creating a Sorted JList Component" says,
Version 6 of the Java Platform, Standard Edition (Java SE, formerly
referred to as J2SE) will add sorting and filtering abilities to the
...
3
votes
1answer
63 views
Scrolling to Item
I'm new to Android and I want to know how to scroll down to a position specified by a button in ListView. Say for example I have an array of 5000 items, sorted. I will have 33 letters on top of the ...
3
votes
3answers
171 views
How to get indices of a sorted array in Python
I have a numerical list: myList = [1, 2, 3, 100, 5]
Now if I sort this list to obtain [1, 2, 3, 5, 100].
What I want is the indices of the elements from the
original list in the sorted order i.e. ...
3
votes
5answers
352 views
Efficient algorithm to produce the n-way intersection of sorted arrays in C
I need to produce the intersection between some sorted arrays of integers in C. I know how to find the intersection between two sorted arrays, but I need to do this for more than two arrays, ...
3
votes
1answer
94 views
Sparse sorted numeric sequence class for .NET
I'm in need of very specific class, I would really like to know if there is existing one, so I don't have to re-implement it.
I have a set of items. Each item has a numeric value associated whit it - ...
3
votes
2answers
608 views
SQL Query - one column must be distinct, restricted column must be most recent
I have a CATEGORIES table that links to an ITEMS table (one to many). Each item table could have multiple barcodes in the BARCODES table (one to many).
The idea is that a new barcode may be added ...
3
votes
6answers
1k views
Sorted hash table (map, dictionary) data structure design
Here's a description of the data structure:
It operates like a regular map with get, put, and remove methods, but has a sort method that can be called to sorts the map. However, the map remembers its ...
3
votes
6answers
828 views
C# alternative for the C++ STL set<T>
I'm looking for a sorted data structure, that will be similar to the STL set(T).
I found SortedList, but it requires (key, val), I'm looking for something like List(string) - only sorted.
I found on ...
3
votes
12answers
2k views
C# Datatype for large sorted collection with position?
I am trying to compare two large datasets from a SQL query. Right now the SQL query is done externally and the results from each dataset is saved into its own csv file. My little C# console ...
2
votes
3answers
91 views
Scala function to get all sorted subsets of size k
I am given a set of size L and want to generate every sorted subset of size k.
Would be great if your solution is in scala but maybe I am able to translate by myself.
An example run for L = 6 and k = ...
2
votes
4answers
107 views
Thread-safe Sorted Collection
Is there an implementation of a thread-safe sorted collection in Python?
Python's docs reference SortedCollection but I'm not sure if it's thread-safe (is it?)
If there is no such implementation - how ...
2
votes
4answers
127 views
Need a fast alternative to Java TreeMap<Integer, Character> that can hold many mappings without slowdown
I am writing a Java program that uses a TreeMap and the performance slows down to a crawl once there are 10's of thousands of integer, character mappings.
I was wondering if there is an ...
2
votes
7answers
138 views
How to sort dict of dicts by keys?
I have a dict, that looks like:
channels = {
'24': {'type': 'plain', 'table_name': 'channel.items.AuctionChannel'},
'26': {'type': 'plain', 'table_name': 'channel.gm.DeleteAvatarChannel'},
'27': ...
2
votes
6answers
87 views
Sorting a counted list in Python
(I am brand new to any kind of programming so please be as specific as you can when you answer)
Problem: I have written a program to solve pythonchallenge.com level 2. The program works but the ...
2
votes
5answers
133 views
Dictionary<> always sorted on value, lookup index from key
I need a dictionary (or any other collection) that stays always sorted by value and can be indexed by key. My purpose is to implement a cache where objects have a unique key and a metric associated to ...
2
votes
5answers
134 views
Sorting a csv file in Python with sorted() returns values in programmer DESC order, not time DESC order
I'm not doing anything overly complex I believe. I'm presorting a large csv data file because it is full of data that arrives in random time order. The index is correct, but the return formatting is ...
2
votes
2answers
230 views
C#: Dictionary sorted on key with ~O(1) lookup
didn't find an answer to this.
I like KeyedCollection, because it keeps the insertion order and has ~O(1) key lookup times.
Now I am looking for a similar type that will sort on the key instead of ...
2
votes
1answer
301 views
Singly-linked list insertion synchronization
Suppose I have a sorted, singly-linked list of N integers containing no duplicates, and k threads (where k << N), each trying to insert some integer (larger than the head node) into the list.
...
2
votes
3answers
205 views
Python sorting multiple attributes
I have a dictionary like the following. Key value pairs or username:name
d = {"user2":"Tom Cruise", "user1": "Tom Cruise"}
My problem is that i need to sort these by the Name, but if multiple users ...
2
votes
2answers
241 views
efficient sorted Cartesian product of 2 sorted array of integers
Need Hints to design an efficient algorithm that takes the following input and spits out the following output.
Input: two sorted arrays of integers A and B, each of length n
Output: One sorted array ...
2
votes
2answers
362 views
Interpolation search on strings
For those of you not familiar with interpolation search, it is method to search for a value in a sorted array that is potentially faster than binary search. You look at the first and last element and ...
2
votes
4answers
226 views
Java - sorted stack
I need a sorted stack. I mean, the element removed from the stack must be the one with great priority. Stack dimension varies a lot (becomes bigger very fast).
I need also to search elements in that ...
2
votes
2answers
1k views
Heap class in .NET [closed]
Possible Duplicate:
Fibonacci, Binary, or Binomial heap in c#?
Is there any class like heap in .NET?
I need some kind of collection from which I can retrieve min. element. I just want 3 ...
2
votes
2answers
3k views
How to force refresh the DataGridView's content?
I want to make a sorted datagridview input. The following code snippet doesn't quite cut it; even if i put a grd.Refresh, the datagridview doesn't show its updated values. If i press arrow down key ...
1
vote
4answers
88 views
Pointer questions regarding linked lists
Alright guys, so I've been working on a linked list program and I've run into a problem. I'm trying to place a piece of data into an already sorted linked list in a sorted fashion. Right now, I'm ...
1
vote
2answers
111 views
Python - Order nested list in alphabetical way
I have the following list:
["stephane", "philippe", "hélène", ["hugo", "jean-michel", "fernand"], "gustave"]
And I would like to order it like this:
["gustave", "hélène", ["fernand", "hugo", ...
1
vote
1answer
154 views
Retrieving JTable line content after user sorted content by clicking on column
I have a pane with two tables A and B. When a row is selected in A, the content of B should be upated.
My code detects row selections in A fine. But, when the user clicks on the column header to ...
1
vote
1answer
470 views
Problem with seekp(), seekg(), read() and write() on the same file
I'm dealing with a problem with files in C++ I'm not able to work out. I'm managing a file with registers and I'm trying to do "Sorted Insert", in Spanish is "Insercción ordenada" but I don't know the ...
1
vote
3answers
925 views
Python sorted() key function weirdness
While I was debugging some illogical behavour I came to the following weirdness in Python 2.5 sorted() function calls:
>>> aa = [10, 5, 20]
>>> sorted(range(len(aa)))
[0, 1, 2]
...
1
vote
5answers
5k views
Java Code Review: Merge sorted lists into a single sorted list
I want to merge sorted lists into a single list. How is this solution? I believe it runs in O(n) time. Any glaring flaws, inefficiencies, or stylistic issues?
I don't really like the idiom of setting ...
1
vote
2answers
218 views
What does python3 do with the methods passed to the “key” argument of sorted()?
I have a question about how python treats the methods passed to sorted(). Consider the following small script:
#!/usr/bin/env python3
import random
class SortClass:
def __init__(self):
...
1
vote
5answers
2k views
Java: What is the best way to find elements in a sorted List?
I have a
List<Cat>
sorted by the cats' birthdays. Is there an efficient Java Collections way of finding all the cats that were born on January 24th, 1983? Or, what is a good approach in ...
0
votes
1answer
21 views
Inserting large sorted data files into a DB
I have large (~100GB) files containing DNA sequences. They are ordered on the first two columns. For example:
chr position allele coverage otherStuff
1 1000 A 10 ...
0
votes
1answer
29 views
implementing sorted “watchlist” class in java: what instruments to use?
I need to implement a WatchList class as a part of a Java client-server app. WL is essentially an array of Items, each of which has a timestamp. I am responsible for for the client side of the app. ...
0
votes
2answers
51 views
C# Iterate over Dictionary sorted by value
Is there any way to iterate over a Dictionary, in sorted order, sorted by VALUE not key?
I did read abut the "SortedDictionary" object, but sadly, that is sorted by key.
One solution would be for me ...
0
votes
3answers
136 views
insert an item into sorted list Python
I'm creating a class where one of the methods inserts a new item into the sorted list. The item is inserted in the corrected (sorted) position in the sorted list. I'm not allowed to use any built-in ...
0
votes
4answers
65 views
Real time sorted by value, auto-discarding, bounded collection ?
I spent some time to try to make a collection that:
1) is sorted by value (not by key)
2) is sorted each time an element is added or modified
3) is fixed size and discard automatically ...
0
votes
2answers
63 views
Python: How to sort a list of objects using attrgetter with case insensitivity
self.data = sorted(self.data, key=attrgetter('word'))
self.data is a list of Word objects. Word objects have 'word', 'definition', 'example' and 'difficulty' attributes. I want to sort by the 'word' ...
0
votes
1answer
53 views
Sorted linked list and the addSorted function problem.
So I've been working on this for awhile and I can't seem to figure out what's wrong. This addSorted function adds in all the correct values in their respectable places of the sorted array but when it ...