-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestMain.cpp
72 lines (58 loc) · 1.7 KB
/
testMain.cpp
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
/*
* copyright (c) 2016 K Sreram
* This program and any associated files are under MIT license (https://opensource.org/licenses/MIT)
*/
#define TEST_COMPLEXITY true
#include <iostream>
#include "quicksort\QuickSort.hpp"
#include <vector>
#include <stdlib.h>
#include <time.h>
int main()
{
srand(time(NULL));
std::vector <int> array, array2;
int arraySize = rand() % 100000 + 1;
std::cout << "array size :" << arraySize << "\n";
system("pause");
std::cout << "\n";
array.resize(arraySize);
for (int i = 0; i < arraySize; ++i)
{
array[i] = rand() % 500;
}
array2 = array;
QuickSort<int> sortProcedure(0, &array, HOARE_PARTITION_SCHEME);
sortProcedure.Randomize = false;
std::cout << "\n----------------- Non randomized -------------------------\n";
std::cout << "\narray before sorting : \n";
for (int i = 0; i < arraySize; ++i)
{
std::cout << array[i] << "\n";
}
sortProcedure.Sort();
std::cout << "\n array after sorting : \n";
for (int i = 0; i < arraySize; ++i)
{
std::cout << array[i] << "\n";
}
std::cout << "\n\n count:" << sortProcedure.count << "\n";
system("pause");
std::cout << "\n --------------- Randomized -------------------------------\n";
sortProcedure.reInitialize(0, &array2, HOARE_PARTITION_SCHEME);
sortProcedure.Randomize = true;
std::cout << "\narray before sorting : \n";
for (int i = 0; i < arraySize; ++i)
{
std::cout << array2[i] << "\n";
}
sortProcedure.Sort();
std::cout << "\n array after sorting : \n";
for (int i = 0; i < arraySize; ++i)
{
std::cout << array2[i] << "\n";
}
std::cout << "\n\n count:" << sortProcedure.count << "\n";
system("pause");
return 0;
}