-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmysub.c
More file actions
394 lines (362 loc) · 13.4 KB
/
mysub.c
File metadata and controls
394 lines (362 loc) · 13.4 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
int findMax(int countA, int countB, int indexA, int indexB)
{
if (countA == countB)
return 0;
else if (countA > countB)
return indexA;
else
return indexB;
}
int mysub(int n)
{
int result;
int myArray[4];
int queryIndex = 1;
int iterByOne = 1;
int firstRun = 1;
int previousRun = -1;
//Same value in both (1) or (0) ==> Need both so we can iterate by two eventually.
int booleanIndexA1 = -1;
int booleanIndexA2 = -1;
int indexCountA = 0; //Used to keep count of boolean value A
int booleanIndexB = -1; //Remaining boolean value (1) or (0)
int indexCountB = 0; //Used to keep count of boolean value B
while (iterByOne && queryIndex < n - 2) //Haven't found two different boolean values and their index yet.
{
myArray[0] = queryIndex;
myArray[1] = queryIndex + 1;
myArray[2] = queryIndex + 2;
myArray[3] = queryIndex + 3;
queryIndex++;
result = QCOUNT(1, myArray);
if (firstRun)
{
if (result == 4)
{
booleanIndexA1 = myArray[0];
booleanIndexA2 = myArray[1];
indexCountA = 4;
}
else if (result == 2)
{
//DO NOTHING because we know nothing about the indexes yet.
}
else if (result == 0)
{
//DO NOTHING because we know nothing about the indexes yet.
}
else
{
printf("********ERROR: On first run, result is a value other than 4, 2, or 0 ********\n");
return -1;
}
firstRun = 0;
previousRun = result;
}
else //Second run.
{
if (result == 4 && previousRun == 4) //4 ==> 4
{
indexCountA++;
if (indexCountA > n/2) //We have reached a majority.
{
return indexCountA;
}
}
else if (result == 4 && previousRun == 2) //2 ==> 4
{
booleanIndexA1 = 2;
booleanIndexA2 = 3;
booleanIndexB = 1;
indexCountA = 4;
indexCountB = 1;
queryIndex = 6; //Update query index for iterating by 2
iterByOne = 0;
}
else if (result == 2 && previousRun == 4) //4 ==> 2
{
queryIndex += 3;
booleanIndexB = queryIndex - 1;
indexCountB = 1;
iterByOne = 0;
}
else if (result == 2 && previousRun == 2) //2 ==> 2
{
//Store the two index with the same boolean values
booleanIndexA1 = 1;
booleanIndexA2 = 5;
queryIndex = 6; //Update query index for iterating by 2
//Check Right 2 elements of the middle 3:
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexA2;
myArray[2] = 3;
myArray[3] = 4;
result = QCOUNT(1, myArray);
if (result ==2)
{
//Need another iteration to find opposite boolean value (check left 2 elements of the middle 3).
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexA2;
myArray[2] = 2;
myArray[3] = 3;
result = QCOUNT(1, myArray);
if (result == 2)
{
//we know the opposite boolean value (Middle is different at index 3).
booleanIndexB = 3;
indexCountA = 4;
indexCountB = 1;
iterByOne = 0;
}
else if (result == 4)
{
//we know the opposite boolean value (Far right is different at index 4).
booleanIndexB = 4;
indexCountA = 4;
indexCountB = 1;
iterByOne = 0;
}
else
{
printf("********ERROR: On first run, result is a value other than 4, 2, or 0 ********\n");
return -1;
}
}
else if (result == 4)
{
//we know the opposite boolean value (Far left at index 2).
booleanIndexB = 2;
indexCountA = 4;
indexCountB = 1;
iterByOne = 0;
}
else if (result == 0)
{
//We know the opposite boolean value (all three are different (we will use index 2).
booleanIndexB = 2;
indexCountA = 2;
indexCountB = 3;
iterByOne = 0;
}
else
{
printf("********ERROR: On first run, result is a value other than 4, 2, or 0 ********\n");
return -1;
}
}
else if (result == 2 && previousRun == 0) //0 ==> 2
{
//We know that index 1 and 5 are opposite boolean values
//Store the two indexes with the opposite boolean values
booleanIndexA1 = 1;
booleanIndexB = 5;
queryIndex = 6; //Update query index for iterating by 2
//Check Right 2 elements of the middle 3:
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexB;
myArray[2] = 3;
myArray[3] = 4;
result = QCOUNT(1, myArray);
if (result == 2)
{
//We know that index 3 and 4 are the same boolean values and index 2 is opposite boolean value.
booleanIndexA1 = 3;
booleanIndexA2 = 4;
booleanIndexB = 2;
indexCountA = 3;
indexCountB = 2;
iterByOne = 0;
}
else if (result == 0)
{
//Need another iteration to find the indexes we need (check left 2 elements of the middle 3).
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexB;
myArray[2] = 2;
myArray[3] = 3;
result = QCOUNT(1, myArray);
if (result == 0)
{
booleanIndexA1 = 2;
booleanIndexA2 = 4;
booleanIndexB = 3;
indexCountA = 3;
indexCountB = 2;
iterByOne = 0;
}
if (result ==2)
{
booleanIndexA1 = 2;
booleanIndexA2 = 3;
booleanIndexB = 4;
indexCountA = 3;
indexCountB = 2;
iterByOne = 0;
}
}
}
else if (result == 0 && previousRun == 2) //2 ==> 0
{
//We know that index 1 and 5 are opposite boolean values
//Store the two indexes with the opposite boolean values
booleanIndexA1 = 1;
booleanIndexB = 5;
queryIndex = 6; //Update query index for iterating by 2
//Check Right 2 elements of the middle 3:
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexB;
myArray[2] = 3;
myArray[3] = 4;
result = QCOUNT(1, myArray);
if (result == 2)
{
//We know that index 3 and 4 are the same boolean values and index 2 is opposite boolean value.
booleanIndexA1 = 3;
booleanIndexA2 = 4;
booleanIndexB = 2;
indexCountA = 3;
indexCountB = 2;
iterByOne = 0;
}
else if (result == 0)
{
//Need another iteration to find the indexes we need (check left 2 elements of the middle 3).
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexB;
myArray[2] = 2;
myArray[3] = 3;
result = QCOUNT(1, myArray);
if (result == 0)
{
booleanIndexA1 = 2;
booleanIndexA2 = 4;
booleanIndexB = 3;
indexCountA = 3;
indexCountB = 2;
iterByOne = 0;
}
if (result ==2)
{
booleanIndexA1 = 2;
booleanIndexA2 = 3;
booleanIndexB = 4;
indexCountA = 3;
indexCountB = 2;
iterByOne = 0;
}
}
}
else if (result == 0 && previousRun == 0) //0 ==> 0
{
//Store the two index with the same boolean values
booleanIndexA1 = 1;
booleanIndexA2 = 5;
queryIndex = 6; //Update query index for iterating by 2
//Check Right 2 elements of the middle 3:
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexA2;
myArray[2] = 3;
myArray[3] = 4;
result = QCOUNT(1, myArray);
if (result == 0)
{
booleanIndexA1 = 3;
booleanIndexA2 = 4;
booleanIndexB = 2;
indexCountA = 2;
indexCountB = 3;
iterByOne = 0;
}
else if (result == 2)
{
//Need another iteration to find the indexes we need (check left 2 elements of the middle 3).
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexA2;
myArray[2] = 2;
myArray[3] = 3;
result = QCOUNT(1, myArray);
if (result == 0)
{
booleanIndexA1 = 2;
booleanIndexA2 = 3;
booleanIndexB = 4;
indexCountA = 2;
indexCountB = 3;
iterByOne = 0;
}
if (result ==2)
{
booleanIndexA1 = 2;
booleanIndexA2 = 4;
booleanIndexB = 3;
indexCountA = 2;
indexCountB = 3;
iterByOne = 0;
}
}
}
else
{
printf("********ERROR: Result is a value other than 4, 2, or 0 ********\n");
return -1;
}
previousRun = result;
}
}
//Iterating by 2 now
while (queryIndex < n)
{
if (indexCountA > n/2) //We have a majority.
{
return booleanIndexA1;
}
else if (indexCountB > n/2) //We have a majority.
{
return booleanIndexB;
}
else
{
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexA2;
myArray[2] = queryIndex;
myArray[3] = queryIndex + 1;
queryIndex += 2;
result = QCOUNT(1, myArray);
if (result == 4) //two of the same values seen.
{
indexCountA += 2;
}
else if (result == 2) //One of each seen.
{
indexCountA += 1;
indexCountB += 1;
}
else if (result == 0) //two new values seen.
{
indexCountB += 2;
}
else
{
printf("********ERROR: Result is a value other than 4, 2, or 0 ********\n");
return -1;
}
}
}
if (queryIndex == n) //No Majority yet with one last element to check: marble[n].
{
myArray[0] = booleanIndexA1;
myArray[1] = booleanIndexA2;
myArray[2] = booleanIndexB;
myArray[3] = queryIndex;
result = QCOUNT(1, myArray);
if (result == 0)
{
indexCountB += 1;
}
else if (result == 2)
{
indexCountA += 1;
}
}
return findMax(indexCountA, indexCountB, booleanIndexA1, booleanIndexB);
}