Tagged Questions
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.
...
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 ...
0
votes
4answers
104 views
Creating new String with sorted letters from a String word in Java
How do I create a String with alphabetical order letters taken from another String?
Let's say I have something like this
String theWord = "Hello World";
How do I compute the new String to make it ...