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
|
#include <iostream>
#include "OrderedArray.h"
#include "UnorderedArray.h"
using namespace std;
int main(int args, char **argc)
{
cout << "Unordered Array Example" << endl << endl;
UnorderedArray<int> uArray(3);
cout << "Pushing 43, 33, 23, 84, 99, 94, and 17 in that order." << endl;
if(uArray.push(43) != -1)
cout << uArray.GetGrowSize() << endl;
if(uArray.push(33) != -1)
cout << uArray.GetGrowSize() << endl;
if(uArray.push(23) != -1)
cout << uArray.GetGrowSize() << endl;
if(uArray.push(84) != -1)
cout << uArray.GetGrowSize() << endl;
if(uArray.push(99) != -1)
cout << uArray.GetGrowSize() << endl;
if(uArray.push(94) != -1)
cout << uArray.GetGrowSize() << endl;
if(uArray.push(17) != -1)
cout << uArray.GetGrowSize() << endl;
cout << "Above numbers represent m_growSize after each successful push" << endl;
cout << "Popping last element" << endl;
uArray.pop();
cout << "Removing element 2" << endl;
uArray.remove(2);
cout << "Unordered array contents: ";
for(int i = 0; i < uArray.GetSize(); i++)
cout << uArray[i] << " ";
cout << endl;
cout << "Search for 12 was found at index: ";
cout << uArray.search(12);
cout << endl << endl;
cout << "Search for 84 was found at index: ";
cout << uArray.search(84);
cout << endl << endl;
cout << "Ordered Array Example" << endl << endl;
OrderedArray<int> oArray(2,1,false);
cout << "Duplicates not allowed" << endl;
cout << "Pushing 43, 33, 23, 84, 99, 94, and 17 in that order, 4 times each" << endl;
if(oArray.push(43) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(33) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(23) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(84) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(99) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(94) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(17) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(43) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(33) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(23) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(84) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(99) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(94) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(17) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(43) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(33) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(23) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(84) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(99) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(94) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(17) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(43) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(33) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(23) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(84) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(99) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(94) != -1)
cout << oArray.GetGrowSize() << endl;
if(oArray.push(17) != -1)
cout << oArray.GetGrowSize() << endl;
cout << "Above numbers represent m_growSize after each successful push" << endl;
cout << "Popping last element" << endl;
oArray.pop();
cout << "Removing element 2" << endl;
oArray.remove(2);
cout << "Ordered array contents: ";
for(int i = 0; i < oArray.GetSize(); i++)
cout << oArray[i] << " ";
cout << endl;
cout << "Search for 12 was found at index: ";
cout << oArray.search(12);
cout << endl << endl;
cout << "Search for 84 was found at index: ";
cout << oArray.search(84);
cout << endl << endl;
return 0;
}
|