4
votes
6answers
456 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 …
3
votes
12answers
1k 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 …
2
votes
2answers
204 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 pr …
2
votes
5answers
208 views
C# alternative for the C++ STL set<T>
Hi
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) - …
1
vote
5answers
579 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 …
0
votes
5answers
160 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 …
0
votes
2answers
60 views
dictionary of object
hi all,
I have a sorted dict
{
1L: '<'New_Config (type: 'String') (id: 1L) (value: 4L) (name: 'account_receivable')'>',
2L: '<'New_Config (type: 'string') (id: 2L) (value …
0
votes
1answer
140 views
Efficient ways of inserting a new cell into a sorted UITableView?
I am trying to insert a new cell into a table view where the data is sorted. Is there an easy & efficient way to do this using the API?
The easiest way seems to be insert the …
0
votes
1answer
127 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 __in …
-1
votes
2answers
68 views
Sorted array Big o notation
Hello
I just have a simple question, why is the big O notation of a sorted array O(log N)? It will be a sorted array.
