There is a very elegant solution to this kind of problem. Algorithm and coding is simple.
Time complexity is O(n)
I saw a similar problem somewhere. The problem was to generate the numbers of the form 2^x.3^y in ascending order.
So here goes.
int kthsmallest(int k){
int two = 0, three = 0, five = 0;
int A[k];
A[0] = 1;
for (int i=1; i<k; i++){
int min = (A[two] * 2 <= A[three] * 3)? A[two] * 2: A[three] * 3;
min = (min <= A[five] * 5)? min: A[five] * 5;
A[i] = min;
if (min == A[two] * 2)
two++;
if (min == A[three] * 3)
three++;
if (min == A[five] * 5)
five++;
}
return A[k-1];
}
The algorithm is basically - keep three pointers for x, y, z. In the code, I used two, three and five. In every iteration, check which one smaller (2^x, 3^y or 5^z). Put that number in the ith index and increment the corresponding value of x or y or z. If there are more than one min values, then increment both the pointers.