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. ...
4
votes
1answer
207 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: ...
2
votes
2answers
253 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 ...