Help with the following code 1 Rewrite to be contained in a

Help with the following code:

1. Rewrite to be contained in a vector object.

2. Using linked lists, redo to handle as many entries as required.

3. Add the ability to add or delete a new entry to the address book.

4. When the program terminates, write the data in the address book to a disk.

# include <iostream>

# include <conio.h>

# include <stdio.h>

using namespace std;

class addressbook

{

private:

char name[500];

long ph_num; //class addressType :public addressbook

char address[500];

int year;

int mounth;

int day;

char gender;

int d, Th, y;

char M, F, m, f;

// char freind[];

public:

addressbook();

void setName();

void getName();

void getphone();

long setphone();

void setAddress();

void getAddress();

float getAverage();

int setDay();

void getDay();

int setMounth();

void getMounth();

int setYear();

void getYear();

char setGender();

void getGender();

};

addressbook::addressbook() // constructor

{

name;

ph_num = 0;

year = 0;

mounth = 0;

day = 0;

}

int addressbook::setDay()

{

cout << \"\ \\tEnter the day:\ \\t\" << endl;

cin >> d;

day = (d >= 1 && d<32) ? d : 0;

return day;

}

int addressbook::setMounth()

{

cout << \"\ \\tEnter the mounth:\ \\t\" << endl;

cin >> m;

mounth = (Th >= 1 && Th<13) ? Th : 0;

return mounth;

}

int addressbook::setYear()

{

cout << \"\ \\tEnter the year :\ \\t\" << endl;

cin >> y;

year = (y >= 1 && y<2008) ? y : 0;

return year;

}

void addressbook::getMounth()

{

cout << mounth << \"/\";

}

void addressbook::getDay()

{

cout << \"\\tBIRTH DAY : \" << day << \"/\";

}

void addressbook::getYear()

{

cout << year;

}

char addressbook::setGender()

{

int flag = 0;

cout << \" \ \\tEnter the gender,(F)for female (M)for male:\ \\t\";

cin >> gender;

while (flag != 1)

{

if (gender == (\'F\') || gender == (\'M\') || gender == (\'m\') || gender == (\'f\'))

flag = 1;

else

{

cout << \"\\t error.....Try Again\ \\t\";

cin >> gender;

return gender;

}

}

}

void addressbook::getGender()

{

cout << \"\\tGender : \" << gender << endl;

}

void addressbook::getAddress()

{

cout << \"\\tAddress : \" << address << endl;

}

float addressbook::getAverage()

{

return 0.0f;

}

void addressbook::setAddress()

{

cout << \" \ \\tEnter the address:\ \\t\" << endl;

gets_s(address);

}

void addressbook::setName()

{

cout << \" \\tEnter the name:\ \\t\" << endl;

gets_s(name);

}

void addressbook::getName()

{

cout << \"\ \\tName : \" << name << \" \" << endl;

}

long addressbook::setphone()

{

cout << \" \ \\tEnter the person number:\ \\t\" << endl;

cin >> ph_num;

return ph_num;

}

void addressbook::getphone()

{

cout << \"\\tPerson # : \" << ph_num << endl;

}

/*class addressType :public addressbook

{

do that

};*/

int main()

{

int s;

cout << \" Enter number person max(500): \";

cin >> s;

addressbook book[10];

for (int i = 1; i<2; i++)

{

book[i].setName();

book[i].setphone();

book[i].setAddress();

book[i].setDay();

book[i].setMounth();

book[i].setYear();

book[i].setGender();

cout << \"\ \ ***********************************\ \";

}

for (int u = 0; u<2; u++)

{

book[u].getName();

book[u].getphone();

book[u].getAddress();

book[u].getGender();

book[u].getDay();

book[u].getMounth();

book[u].getYear();

}

_getch();

}

Solution

Question 1

Changes to be made in the code:

Instead of:

char name[500];

write:

vector<char> name(500);

similarly, instead of:

char address[500];

change it to:

vector<char> address(500);

and finally change

addressbook book[10];

to:

vector<char> book(10);

You might have figured it out by the changes but for reference, changing an array to vector has to be done by mentioning \"vector\" followed by the \"data_type\" inside \"<>\" and then mentioning the name of the identifier(variable) like in an array and providing its size, but the size has to be inside \"()\" instead of \"[]\".

Edit1- include the vector header file at the header section as:

#include<vector>

Here is the complete code-

# include <iostream>

# include <conio.h>

# include <stdio.h>

#include <vector>

using namespace std;

class addressbook

{

private:

vector<char> name(500);

long ph_num; //class addressType :public addressbook

vector<char> address(500);

int year;

int mounth;

int day;

char gender;

int d, Th, y;

char M, F, m, f;

// char freind[];

public:

addressbook();

void setName();

void getName();

void getphone();

long setphone();

void setAddress();

void getAddress();

float getAverage();

int setDay();

void getDay();

int setMounth();

void getMounth();

int setYear();

void getYear();

char setGender();

void getGender();

};

addressbook::addressbook() // constructor

{

name;

ph_num = 0;

year = 0;

mounth = 0;

day = 0;

}

int addressbook::setDay()

{

cout << \"\ \\tEnter the day:\ \\t\" << endl;

cin >> d;

day = (d >= 1 && d<32) ? d : 0;

return day;

}

int addressbook::setMounth()

{

cout << \"\ \\tEnter the mounth:\ \\t\" << endl;

cin >> m;

mounth = (Th >= 1 && Th<13) ? Th : 0;

return mounth;

}

int addressbook::setYear()

{

cout << \"\ \\tEnter the year :\ \\t\" << endl;

cin >> y;

year = (y >= 1 && y<2008) ? y : 0;

return year;

}

void addressbook::getMounth()

{

cout << mounth << \"/\";

}

void addressbook::getDay()

{

cout << \"\\tBIRTH DAY : \" << day << \"/\";

}

void addressbook::getYear()

{

cout << year;

}

char addressbook::setGender()

{

int flag = 0;

cout << \" \ \\tEnter the gender,(F)for female (M)for male:\ \\t\";

cin >> gender;

while (flag != 1)

{

if (gender == (\'F\') || gender == (\'M\') || gender == (\'m\') || gender == (\'f\'))

flag = 1;

else

{

cout << \"\\t error.....Try Again\ \\t\";

cin >> gender;

return gender;

}

}

}

void addressbook::getGender()

{

cout << \"\\tGender : \" << gender << endl;

}

void addressbook::getAddress()

{

cout << \"\\tAddress : \" << address << endl;

}

float addressbook::getAverage()

{

return 0.0f;

}

void addressbook::setAddress()

{

cout << \" \ \\tEnter the address:\ \\t\" << endl;

gets_s(address);

}

void addressbook::setName()

{

cout << \" \\tEnter the name:\ \\t\" << endl;

gets_s(name);

}

void addressbook::getName()

{

cout << \"\ \\tName : \" << name << \" \" << endl;

}

long addressbook::setphone()

{

cout << \" \ \\tEnter the person number:\ \\t\" << endl;

cin >> ph_num;

return ph_num;

}

void addressbook::getphone()

{

cout << \"\\tPerson # : \" << ph_num << endl;

}

/*class addressType :public addressbook

{

do that

};*/

int main()

{

int s;

cout << \" Enter number person max(500): \";

cin >> s;

vector<addressbook> book(10);

for (int i = 1; i<2; i++)

{

book[i].setName();

book[i].setphone();

book[i].setAddress();

book[i].setDay();

book[i].setMounth();

book[i].setYear();

book[i].setGender();

cout << \"\ \ ***********************************\ \";

}

for (int u = 0; u<2; u++)

{

book[u].getName();

book[u].getphone();

book[u].getAddress();

book[u].getGender();

book[u].getDay();

book[u].getMounth();

book[u].getYear();

}

_getch();

}

Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili
Help with the following code: 1. Rewrite to be contained in a vector object. 2. Using linked lists, redo to handle as many entries as required. 3. Add the abili

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site