-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshortProgram.java
155 lines (144 loc) · 3.96 KB
/
shortProgram.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/**
* This class represents a short program of a certain number of pages.
* The refString variable is an int[] that holds various page indeces.
* The page variable refers to the current page that you want to insert into the refString.
*/
public class shortProgram {
private int[] refString;
private int page;
/**
* Generates a "good" or "random" program based on boolean. If true, create good. If false,
* create a random string
* Boolean constructor.
* @param type
*/
public shortProgram(boolean type) {
refString = new int[10000];
if (type == true) {
page = 0;
for (int i = 0; i < 10000; i++) {
double random = Math.random();
if (random < 0.9) {
page = (int) (random * 10);
refString[i] = page;
}
else {
page = (int) (Math.random() * 90) + 10;
refString[i] = page;
}
}
}
else {
page = 0;
for (int i = 0; i < 10000; i++) {
double random = Math.random();
page = (int) (random * 100);
refString[i] = page;
}
}
}
/** Byte is a 8-bit signed integer, ranging from -127 to 128. Send this constructor 100 or it wont be happy.
* Either a failure with ArrayOutOfBounds or an failure later during paging with null returns from array.
* This is a statically assigned string with pages 0-9 being used 90% of the time, split evenly among
* the pages for 9% occurrence each(810 each). The remaining 90 pages called 1000 times have the 90/10 rule applied
* again. Nine pages are called 900 times for 1% occurrence each. The remaining 81 pages are called only 100 times total.
* We could further the 90/10 rule here, and some of the pages from 0-99 pages will not occur at all.
* We will have all 0-99 pages appear, but will simulate this behavior by giving 10% of the (5)remaining
* 81 pages three occurrences and 3 numbers 2 occurrences.
*
* Aha! Come to think of it, with a random spread , how will we know how many pages we have ?
* This is the "great/highly structured/predicatible" program
*
*
* Constructor that takes in a byte as input.
* @param pages
*/
public shortProgram(byte pages) {
refString = new int[pages*100];
int page = 0;
for(int i = 0; i< 8999; i++)
{ if(page < 10)
refString[i] = page;
else
refString[i] = (page = 0);
page++;
}
page = 10;
for(int i = 8999; i<9899; i++)
{ if(page < 19)
refString[i] = page;
else
refString[i] = (page = 10);
page++;
}
page = 19;
for(int i = 9899; i < 9980;i++)
{ if(page < 100)
refString[i] = page;
else
refString[i] = (page = 19);
page++;
}
page = 19;
{ for(int i = 9980; i < 9999;i++)
if(page < 24)
refString[i] = page;
else
refString[i] = (page = 19);
page++;
}
}
/**
* returns the value in the refString at this specific index
* @param i
* @return
*/
public int getIndex(int i) {
return refString[i];
}
/**
* returns the refString array.
* @return
*/
public int[] getArray() {
return refString;
}
/**
* Returns the size of the refString.
* @return
*/
public int size() {
return refString.length;
}
/**
*swaps array elements i and j
*
* @param i
* @param j
*/
public void exch(int i, int j) {
int swap = refString[i];
refString[i] = refString[j];
refString[j] = swap;
}
/**
*This method shuffles the refString array.
*
*/
public void shuffle() {
int N = refString.length;
for (int i = 0; i < N; i++) {
int r = i + (int) (Math.random() * (N-i)); // between i and N-1
exch(i, r);
}
}
/**
* This method prints the elements of the refString array
*
*/
public void show() {
for (int i = 0; i < refString.length; i++) {
System.out.println(refString[i]);
}
}
}