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
|
#include <iostream>
#include<string>
#include<fstream>
using namespace std;
void swap (string& name1, string& name2);
void getData (string name[], int& item);
void ascending (string name [], int item );
void ascending (string name [], int item );
void descending (string name[], int item);
void output (string name [], int item);
int getChoice();
int main()
{
string name [1000];
int item, choice;
getData (name, item);
choice = getChoice();
if (choice==1)
ascending (name, item);
if (choice ==2)
descending (name, item);
output (name, item);
}
void swap (string& name1, string& name2)
{
string temp;
temp = name1;
name1 = name2;
name2 = temp;
}
void getData (string name[], int& item)
{
ifstream fin;
fin.open("C:\\Users\arroyo99\Desktop\example.txt");
item = 0;
while (!fin.eof())
{
fin>> name[item];
item++;
}
cout << "item =" << item << endl<<endl;
}
void ascending (string name [], int item )
{
for (int j=0; j<item-1; j++)
{
for (int i=0; i<item-1; i++)
if(name[i] >name [i+1])
swap(name[i], name[i+1]);
}
}
void descending (string name[], int item)
{
string temp;
for (int j=0; j <item-1; j++)
{
for (int i=0; i<item-1; i++)
if (name[i]<name[i+1])
swap(name[i], name [i+1]);
}
}
void output (string name [], int item)
{
for (int i=0; i<item; i++)
cout<<name[i]<< endl;
cout<<endl<<endl;
}
int getChoice()
{
int choice;
cout<< "Please enter 1 for ascending or 2 for decending." <<endl;
cin>>choice;
return choice;
}
|