name age pairs 3.0 [global operator]

Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 9 Exercise 3
Using std_lib_facilities.h by Bjarne Stroustrup.

[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PPP
// Chapter 9 Exercise 3

#include "std_lib_facilities.h"

class Name_pairs {
public:
vector<string> names;
vector<int> ages;

void read_name();
void read_age();
void sort_names_ages();
};

void Name_pairs::read_name() {
string nameTemp;
string nameChecked;

while (true) {
cout << "Enter name: " << endl;
cin >> nameTemp;

if (nameTemp == "print") {
cin.clear();
break;
}

for (int i = 0; i < nameTemp.size(); i++) {
if (isalpha(nameTemp[i])) {
nameChecked += nameTemp[i];
}
else {
cout << "no valid name was entered: " << nameTemp << endl;
nameChecked = "reset";
}
}

if (nameChecked == "reset") {
cin.clear();
}
else {
names.push_back(nameTemp);
read_age();
}
}
};

void Name_pairs::read_age() {
int ageTemp;
string wrongEntry;

while (cin) {
cout << "Enter corresponding age: " << endl;
if (cin >> ageTemp) {
ages.push_back(ageTemp);
break;
}
else {
cin.clear();
cin >> wrongEntry;
cout << "no valid age entered: " << wrongEntry << endl;
}
}
};

void Name_pairs::sort_names_ages() {
vector<string> sorted_names = names;
vector<int> sorted_ages = ages;
vector<int> index;
sort(sorted_names);

for (int i = 0; i < sorted_names.size(); i++) {
for (int j = 0; j < sorted_names.size(); j++) {
if (names[i] == sorted_names[j]) {
index.push_back(j);
}
}
}

names = sorted_names;

for (int i = 0; i < sorted_names.size(); i++) {
ages[i] = sorted_ages[index[i]];
}

};

ostream & operator<< (ostream & os, const Name_pairs & np) {
for (int i = 0; i < np.ages.size(); i++) {
os << np.names[i] << " " << np.ages[i] << endl;
}
return os;
}

bool operator ==(Name_pairs& a, Name_pairs& b) {
if (a.ages == b.ages && a.names == b.names) {
return true;
}
else {
return false;
}
}

bool operator !=(Name_pairs& a, Name_pairs& b) {
if (a.ages != b.ages && a.names != b.names) {
return true;
}
else {
return false;
}
}

void calculate() {
cout << "Enter name and age pairs as prompted.\n"
"Enter ‘print’ instead of a name to print your name age pairs:\n\n";
Name_pairs np;
np.read_name();
np.sort_names_ages();

Name_pairs np1 = np;
if (np1 == np) {
cout << "np == np1" << endl;
}
if (np1 != np) {
cout << "np == np1" << endl;
}

cout << np;
};

int main()
try
{
calculate();
keep_window_open();
}

catch (runtime_error e) {
cout << e.what() << endl;
keep_window_open();
}
catch (…) {
cout << "Exiting\n";
keep_window_open();
}
[/code]

Output:
Enter name and age pairs as prompted.
Enter 'print' instead of a name to print your name age pairs:

Enter name:
Philipp
Enter corresponding age:
28
Enter name:
Jasmin
Enter corresponding age:
30
Enter name:
Alfred
Enter corresponding age:
60
Enter name:
print
np == np1
Alfred 60
Jasmin 30
Philipp 28
Please enter a character to exit

Newsletter Updates

Enter your email address below to subscribe to our newsletter

Leave a Reply

Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124