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
|
int Left(int i)
{
return (2*i);
}
int Right(int i)
{
return (2*i +1);
}
void Heapify(int A[],int i, int heapsize)
{
int l = Left(i),
r = Right(i),
largest, temp;
if ( l <= heapsize && A[l] > A[i]){
largest = l;
}
else {
largest = i;
}
if (r <= heapsize && A[r] > A[largest]){
largest =r;
}
if (largest != i)
{
temp = A[l];
A[l] = A[largest];
A[largest] = temp;
Heapify(A,largest, heapsize);
}
}
void BuildHeap(int A[],int heapsize)
{
for (int i = (heapsize -1)/2; i>=0; i--)
{
Heapify(A,i,heapsize);
}
}
void HeapSort(int A[],int heapsize) //this part was based off of anothers code
{
int temp;
BuildHeap(A, heapsize);
cout << "\nFirst Call \n";
for(int j = 0; j<heapsize; j++)
{
cout << A[j] << " ";
}
for (int i = heapsize; i>0; i--)
{
temp = A[0];
A[0] = A[heapsize -1];
A[heapsize -1] = temp;
heapsize = heapsize - 1;
Heapify(A,0, heapsize);
}
}
int Smallest() // find smallest of several ints
{
cout << " Prog to sort and tell you smallest int entered \n\n";
int* arrayPtr; // Pointer to int, initialize to nothing.
int n; // Size needed for array
//Setup
cout << "Enter the number of digits you will enter \n";
cin >> n; // Read in the size
arrayPtr = new (nothrow) int[n]; // Allocate n ints and save ptr in a.
cout << "\nEnter your digits eg. 1 2 3 4 5 \n";
for(int i = 0; i < n; i++)
{
cin >> arrayPtr[i];
}
cout << "\nyou entered \n";
for(int j = 0; j<n; j++)
{
cout << arrayPtr[j] << " ";
}
//sorting
HeapSort(arrayPtr,n);
//something to print
cout << "\nHopefully Sorted \n";
for(int j = 0; j<n; j++)
{
cout << arrayPtr[j] << " ";
}
return(0);
}
|