Radix sort sorts the numbers starting from lease significant digit to most significant digit. I have the following scenario :
My alphabet is the english alphabet and therefore my "numbers" are english language strings. The characters of these strings are revealed one at a time left to right. That is, the most significant digit , for all strings, is revealed first and so on. At any stage, i will have a set of k character long strings, that is sorted. At this point one character more is revealed for every string. And i want to sort the new set of strings. How do i do this efficiently without starting from scratch ?
For example if i had the following sorted set { for, for, sta, sto, sto }
And after one more character each is revealed, the set is { form, fore, star, stop, stoc }
The new sorted set should be {fore, form, star, stoc, stop }
I m hoping for a complexity O(n) after each new character is added, where n is the size of the set.