-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSortDriver.java
345 lines (300 loc) · 9.75 KB
/
SortDriver.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
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
import java.util.Scanner;
import java.util.Random;
import java.io.*;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class SortDriver {
/**
* Gets the sort type that the user wants
* @return an integer that corresponds to the sort type
*/
public static int getSortType(){
while(true){
Scanner reader = new Scanner(System.in);
System.out.println("Select a sorting algorithm from the following: 1: Selection Sort 2: Merge/Heap Sort 3: Insertion Sort 4: Quick Sort");
String sortType = reader.nextLine();
int x = 0;
try{x = Integer.parseInt(sortType);
}catch(Exception numberformatException){
System.out.println("Enter number");
continue;
}
if(x < 5 && x > 0){
return x;
}
System.out.println("Enter number within range");
}
}
/**
* Gets number of integer values that a user would like to sort
* @return the number of int values
*/
public static int getNumOfIntValues(){
while(true){
Scanner reader = new Scanner(System.in);
System.out.println("How many integer values would you like to sort(-1 for preset amount):");
String numOfIntegers = reader.nextLine();
int x = 0;
try{x = Integer.parseInt(numOfIntegers);
}catch(Exception numberformatException){
System.out.println("Enter number");
continue;
}
if(x > 0 || x == -1){
return x;
}
System.out.println("Enter number above 0");
}
}
public static void getValueFromSet(int sortType){
String filePath = "results.csv";
// first create file object for file placed at location
// specified by filepath
try {
// create FileWriter object with file as parameter
FileWriter outputfile = new FileWriter(filePath);
outputfile.append("Array Size");
outputfile.append(",");
outputfile.append("Time in milliseconds");
outputfile.append(",");
outputfile.append("Sort Type " + sortType);
outputfile.append("\n");
for(int i = 0; i < 5; i++){
long time = getTimeToSortArray(10000 * (int)Math.pow(2,i), sortType);
outputfile.append(Integer.toString(10000 * (int)Math.pow(2,i)));
outputfile.append(",");
outputfile.append(Long.toString(time));
outputfile.append("\n");
}
// closing writer connection
outputfile.close();
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* Creates an array a certain length depend on parameter
* fills the array with random numbers from 0 to 2147483647
* @param numOfIntegers //length of the array
* @return //the array
*/
public static int[] randomValues(int numOfIntegers){
Random rand = new Random();
int arr[] = new int[numOfIntegers];
for(int i = 0; i < arr.length; i++){
arr[i] = rand.nextInt(Integer.MAX_VALUE);
}
return arr;
}
//Quick sort methods
/**
* Sorts the array using selection sort method
* @param arr array with integers to sort
*/
void selecionSort(int arr[])
{
int n = arr.length;
for (int i = 0; i < n-1; i++)
{
// Find the minimum element in unsorted array
int min_idx = i;
for (int j = i+1; j < n; j++)
if (arr[j] < arr[min_idx])
min_idx = j;
// Swap the found minimum element with the first
// element
int temp = arr[min_idx];
arr[min_idx] = arr[i];
arr[i] = temp;
}
}
/**
* Sorts the array using merge sort method
* @param arr the array to sort
* @param l index to start at
* @param m middle
* @param r ending index of the array
*/
void mergeSort(int arr[], int l, int m, int r)
{
// Find sizes of two subarrays to be merged
int n1 = m - l + 1;
int n2 = r - m;
/* Create temp arrays */
int L[] = new int [n1];
int R[] = new int [n2];
/*Copy data to temp arrays*/
for (int i=0; i<n1; ++i)
L[i] = arr[l + i];
for (int j=0; j<n2; ++j)
R[j] = arr[m + 1+ j];
/* Merge the temp arrays */
// Initial indexes of first and second subarrays
int i = 0, j = 0;
// Initial index of merged subarray array
int k = l;
while (i < n1 && j < n2)
{
if (L[i] <= R[j])
{
arr[k] = L[i];
i++;
}
else
{
arr[k] = R[j];
j++;
}
k++;
}
/* Copy remaining elements of L[] if any */
while (i < n1)
{
arr[k] = L[i];
i++;
k++;
}
/* Copy remaining elements of R[] if any */
while (j < n2)
{
arr[k] = R[j];
j++;
k++;
}
}
// Main function that sorts arr[l..r] using
// merge()
void sort(int arr[], int l, int r)
{
if (l < r)
{
// Find the middle point
int m = (l+r)/2;
// Sort first and second halves
sort(arr, l, m);
sort(arr , m+1, r);
// Merge the sorted halves
mergeSort(arr, l, m, r);
}
}
static void quickSortswap(int[] arr, int i, int j)
{
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
/* This function takes last element as pivot, places
the pivot element at its correct position in sorted
array, and places all smaller (smaller than pivot)
to left of pivot and all greater elements to right
of pivot */
static int quickSortPartition(int[] arr, int low, int high)
{
// pivot
int pivot = arr[high];
// Index of smaller element and
// indicates the right position
// of pivot found so far
int i = (low - 1);
for (int j = low; j <= high - 1; j++) {
// If current element is smaller
// than the pivot
if (arr[j] < pivot) {
// Increment index of
// smaller element
i++;
quickSortswap(arr, i, j);
}
}
quickSortswap(arr, i + 1, high);
return (i + 1);
}
/* The main function that implements QuickSort
arr[] --> Array to be sorted,
low --> Starting index,
high --> Ending index
*/
static void quickSort(int[] arr, int low, int high)
{
if (low < high) {
// pi is partitioning index, arr[p]
// is now at right place
int pi = quickSortPartition(arr, low, high);
// Separately sort elements before
// partition and after partition
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}
//Insertion sort method
void insertionSort(int arr[])
{
int n = arr.length;
for (int i = 1; i < n; ++i) {
int key = arr[i];
int j = i - 1;
/* Move elements of arr[0..i-1], that are
greater than key, to one position ahead
of their current position */
while (j >= 0 && arr[j] > key) {
arr[j + 1] = arr[j];
j = j - 1;
}
arr[j + 1] = key;
}
}
// Function to print an array
static void printArray(int[] arr, int size)
{
for (int i = 0; i < size; i++)
System.out.print(arr[i] + " ");
System.out.println();
}
/**
* Gets the time in milliseconds to sort in an array of a varying size
* @param size the number of values in the array
* @param sortType the number corresponding to sort type of the array
* @return the long value of the time in milliseconds to sort the array
*/
public static long getTimeToSortArray(int size, int sortType){
int[] randomNumbers = randomValues(size);
long preSort = System.currentTimeMillis();
SortDriver ob = new SortDriver();
if(sortType == 1){
ob.selecionSort(randomNumbers);
}else if(sortType == 2){
ob.sort(randomNumbers, 0, size - 1); //user input array goes here instead
}else if(sortType == 3){
ob.insertionSort(randomNumbers);
}else if(sortType == 4){
quickSort(randomNumbers, 0, size - 1);
}
long postSort = System.currentTimeMillis();
// Print min and max values
// min and max value
System.out.println("Minimum Value");
int min = randomNumbers[0];
System.out.println(min);
System.out.println("Maximum Value");
int max = randomNumbers[randomNumbers.length-1];
System.out.println(max);
return postSort - preSort;
}
// Driver method
public static void main(String args[]) {
System.out.println("Welcome To The Sorting Machine");
int sortType = getSortType();
int numOfIntValues = getNumOfIntValues();
if(numOfIntValues == -1){
getValueFromSet(sortType);
System.out.println("Done writing to file");
}else{
long time;
time = getTimeToSortArray(numOfIntValues, sortType);
System.out.print("Sort Time: " + time + " Miliseconds");
}
}
}