Write an efficient algorithm to print the following two outputs
You are given a pre-defined function named getrand100() which returns an integer which is one random number from 1-100. You can call this function as many times as you want but beware that this function is quite resource intensive. You cannot use any other random generator. You canNOT change the definition of getrand100().
int getrand100(){
Random rand = new Random();
return (1+rand.nextInt(100));
}
- Output1: Print numbers 1-20 in random order. (Not 20 random numbers)
- Output2: Print numbers 1-200 in random order. (Not 200 random numbers)
Note:
- i. Every number should be printed exactly once.
- ii. There should be no pattern in the numbers listing. List should be completely random
i.e., all numbers have equal probability appearing at any place. - iii. You may call getrand100() any number of time to get randomnumber from 1 to 100.
- iv. You cannot use any other random generator function except getrand100().

brute-forcesolution :). Add to a list a number while it is not there yet - but this is not "efficient". – Xeon Jun 5 '12 at 1:37