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
|
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
using namespace std;
const int n = 10;
int r[n];
void swapEm(int &a, int &b)
{
int temp;
temp = a;
a = b;
b = temp;
}
void readEm(int r[], ofstream &outf)
{
int i = 0;
int length = 0;
ifstream inf("input.dat");
while (!inf.eof())
{
inf >> r[i];
//outf << list[i] << endl;
i++;
}
length = i;
outf << "the length of the array is " << length << endl;
}
void bubbleSort(int r[], int n)
{
for (int j = 0; j < n-1; j++)
{
for (int i = 0; i < n-1; i++)
{
if (r[i] > r[i + 1])
swapEm(r[i], r[i+1]);
}
//n++;
}
}
void selectionSort(int r[], int n)
{
int k = 0;
int small = k;
for (k; k < n; k++)
{
for (int j = k + 1; r[j] < r[small];)
{
small = j;
if(k != small)
{
swapEm(r[k], r[small]);
}
}
}
cout << r[10];
}
void insertSort(int r[], int n)
{
int k, j, save;
for (k = n-2; k > 0; k--)
{
j = k + 1;
save = r[k];
r[n - 1] = save;
while (save > r[j])
{
r[j - 1] = r[j];
j = j + 1;
}
r[j - 1] = save;
}
}
void quickSort(int r[], int left, int right)
{
int left = 0;
int right = n - 1;
int j = 0;
int k = right + 1;
cout << "left = " << r[left] << endl;
cout << "right = " << r[right] << endl;
do
{
j = j + 1;
} while (r[j] >= r[left]);
{
}
}
void printEm(int r[], ofstream& outf, int n)
{
{
for (int i = 0; i <= n-1; i++)
outf << r[i] << endl;
}
outf << endl << endl;
}
void main()
{
int r[n + 1];
ofstream outf("output.ot");
readEm(r, outf);
outf << "pre sorted list" << endl;
printEm(r, outf, n);
bubbleSort(r, n);
outf << "after bubble sort of r" << endl;
printEm(r, outf, n);
selectionSort(r, n);
outf << "after selection sort of r" << endl;
printEm(r, outf, n);
insertSort(r, n);
outf << "after insertion sort of r" << endl;
printEm(r, outf, n);
quickSort(r, n);
outf << "after quick sort of r" << endl;
}
|