-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRandomArray.java
54 lines (30 loc) · 1.32 KB
/
RandomArray.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import java.lang.reflect.Array;
public class RandomArray {
private int [] array ;
public RandomArray(int i , int maxBound){
array = new int[i] ;
for(int temp = 0 ; temp < array.length ; temp++){
array[temp] = (int)Math.floor(Math.random() *maxBound) ;
}
}
public String toString(){
System.out.println("The unsorted array is :") ;
String r = "[" ;
for(int temp = 0 ; temp < array.length ; temp++){
if(temp< array.length -1) {
r+=" "+array[temp]+"," ;
}
else {
r+=" "+array[temp]+"" ;
}
}
String q = r+"]" ;
// System.out.println() ;
return q ;
}
// test case
/* public static void main(String args[]){
RandomArray test = new RandomArray(10,1000) ;
System.out.println(test.toString()) ;
} */
}