-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReferenceString.java
More file actions
83 lines (72 loc) · 1.82 KB
/
Copy pathReferenceString.java
File metadata and controls
83 lines (72 loc) · 1.82 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import java.util.Arrays;
import java.util.Random;
public class ReferenceString {
Random gen = new Random();
int string[], size, programs = 100;
double percent;
public ReferenceString(double percent, int size) {
this.size = size;
this.percent = percent;
string = new int[this.size];
}
public void fillRange() {
for (int i = 0, count = 0; i < size; i++, count = 0) {
if (gen.nextInt(programs) < programs*percent && i > 3)
do //PREVENTS CONSECUTIVE DUPLICATES
if (++count < 5)
string[i] = string[gen.nextInt((int) (programs*-(percent-1)))];
else {
string[i] = string[i] = gen.nextInt(programs);
break;
}
while (string[i] == string[i-1]);
else
string[i] = gen.nextInt(programs);
}
}
public void fillLoop() {
for (int i = 0, count = 0; i < size; i++, count = 0) {
if (gen.nextInt(programs) < programs*percent && i > 3)
do //PREVENTS CONSECUTIVE DUPLICATES
if (++count < 5)
string[i] = string[i-gen.nextInt(3)-1];
else {
string[i] = string[i-gen.nextInt(3)-1];
break;
}
while (string[i] == string[i-1]);
else
string[i] = gen.nextInt(programs);
}
}
public void fillRandomly() {
for (int i = 0, count = 0; i < size; i++, count = 0) {
do //PREVENTS CONSECUTIVE DUPLICATES
if (++count > 5)
string[i] = gen.nextInt(programs);
else {
string[i] = gen.nextInt(programs);
break;
}
while (string[i] == string[i-1]);
}
}
public void sort() {
Arrays.sort(string);
}
public void print() {
for (int i = 0; i < size; i++)
System.out.println(string[i] + " ");
}
public int size() {
return size;
}
public int get(int i) {
return string[i];
}
public static void main(String[] args) {
ReferenceString str = new ReferenceString(.9, 10000);
str.fillRandomly();
str.print();
}
}