Linked List AddressBook Help

Can anyone help me to fix one little problem i am having. When i change the name of an entry, the name changes but the ID number associated with the Entry Deletes. I want the program to leave the ID number alone and print it with the New name. Can anyone help me figure this out?

The Code that i have

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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>

using namespace std;

char current;

class Person
{
public:
Person(string newName)
{
    name = newName;
    nextPerson = 0;
}

string name;
string IDNumb;
Person *nextPerson;
};


Person* pHeadNode;


void DrawMenu()
{
cout << "------------Menu-------------" << endl;
cout << "1. Enter a Person to the List" << endl;
cout << "2. Delete a Person from the List"  << endl;
cout << "3. Change a Person's name in the List" << endl;
cout << "4. Display Entries" << endl;
cout << "5. Locate Person by ID Number" << endl;
cout << "6. Locate Person by Name" << endl;
cout << "7. Load List from File" << endl;
cout << "8. Save List to the File" << endl;
cout << "9. Exit the program"  << endl;
cout << "" << endl;
cout << "You choice: ";
}

Person* FindName(string name)
{
if (pHeadNode)
{
    Person *pCurrentNode = pHeadNode;
    while(pCurrentNode && pCurrentNode->name!=name)
    {
        if (pCurrentNode->name==name)
            return pCurrentNode;

        pCurrentNode = pCurrentNode->nextPerson;
    }
}
return 0;
}



void InsertNewNode(Person* pNewNode)
{
  if (!pHeadNode || (pNewNode->name < pHeadNode->name))
{
    pNewNode->nextPerson = pHeadNode;
    pHeadNode = pNewNode;
} else {
    Person *pCurrentNode = pHeadNode;
    Person *pPrevNode = pCurrentNode;
    while(pCurrentNode && pCurrentNode->name < pNewNode->name)
    {
        pPrevNode = pCurrentNode;
        pCurrentNode = pCurrentNode->nextPerson;
    }
    pNewNode->nextPerson = pPrevNode->nextPerson;
    pPrevNode->nextPerson = pNewNode;
}
}

void AddNewEntry()
{
string name;
string IDNumb;
cout << "Enter name of new Entry: ";
getline(cin, name);
cin.clear();
cin.sync();

getline(cin, name);

if (pHeadNode)
{
    if (FindName(name))
    {
        cout << "" << endl;
        cout << "Name already exists";
        cout << "" << endl;
        return;
    }
}

cout << "Enter ID Number for new Entry: ";
getline(cin, IDNumb);



if (pHeadNode)
{
    Person* pNewNode = new Person(name);
    pNewNode->IDNumb = IDNumb;

    InsertNewNode(pNewNode);
} else {
    pHeadNode = new Person(name);
    pHeadNode->IDNumb = IDNumb;

}

cout << "" << endl;
cout << "New Entry is added" << endl;
cout << "" << endl;
}

void DeleteEntry()
{
string name;

if (pHeadNode)
{
    cin.clear();
    cin.sync();

    cout << "Enter name of Entry you want to delete: ";
    getline(cin, name);

    Person *pCurrentNode = pHeadNode;
    Person *pPrevNode = pCurrentNode;
    while(pCurrentNode && pCurrentNode->name!=name)
    {
        if (pCurrentNode->name==name)
            break;

        pCurrentNode = pCurrentNode->nextPerson;
    }

    if (pCurrentNode)
    {
        if (pCurrentNode==pHeadNode)
        {
            pHeadNode = pCurrentNode->nextPerson;
        } else {
            pPrevNode->nextPerson = pCurrentNode->nextPerson;
        }
        delete pCurrentNode;
    } else {
        cout << "" << endl;
        cout << "Entry is not found" << endl;
        cout << "" << endl;
    }
} else {
    cout << "" << endl;
    cout << "Address book is empty already" << endl;
    cout << "" << endl;
    return;
}
}

void ChangeEntry()
{
string name;
string IDNumb;

if (pHeadNode)
{
    cin.clear();
    cin.sync();

    cout << "Enter name of Entry you want to edit: ";
    getline(cin, name);

    Person *pCurrentNode = pHeadNode;
    Person *pPrevNode = pCurrentNode;
    while(pCurrentNode && pCurrentNode->name!=name)
    {
        if (pCurrentNode->name==name)
            break;

        pCurrentNode = pCurrentNode->nextPerson;
    }

    if (pCurrentNode)
    {
        cin.clear();
        cin.sync();
        cout << "Enter name of new Entry: ";
        getline(cin, name);

        if (pHeadNode)
        {
            if (FindName(name))
            {
                cout << "" << endl;
                cout << "Name already exists";
                cout << "" << endl;
                return;
            }
        }

        if (pCurrentNode==pHeadNode)
        {
            pHeadNode = pCurrentNode->nextPerson;
        } else {
            pPrevNode->nextPerson = pCurrentNode->nextPerson;
        }
        delete pCurrentNode;


        cout << "" << endl;
        cout << "Entry is changed" << endl;
        cout << "" << endl;
    } else {
        cout << "" << endl;
        cout << "Entry is not found" << endl;
        cout << "" << endl;
    }
} else {
    cout << "" << endl;
    cout << "Address book is empty " << endl;
    cout << "" << endl;
    return;
}
}

void DisplayEntries()
{
    string getcontent;
    ifstream openfile ("PROG05.txt");
    if(openfile.is_open())
    {
        while(! openfile.eof())
        {
            getline(openfile, getcontent);
            cout << getcontent << endl;
        }
    }
}

void SearchEntriesName()
{
string name;
string IDNumb;

if (pHeadNode)
{
    cin.clear();
    cin.sync();

    cout << "Enter name of Entry you want to Search: ";
    getline(cin, name);

    Person *pCurrentNode = pHeadNode;
    Person *pPrevNode = pCurrentNode;
    while(pCurrentNode && pCurrentNode->name!=name)
    {
        if (pCurrentNode->name==name)
            break;

        pCurrentNode = pCurrentNode->nextPerson;
    }

    cout << pCurrentNode->name << endl;
    cout << pCurrentNode->IDNumb << endl;

}
}

void SearchEntriesIDNumb()
{
string name;
string IDNumb;

if (pHeadNode)
{
    cin.clear();
    cin.sync();

    cout << "Enter the ID Number of the entry you want to search: ";
    getline(cin, IDNumb);

    Person *pCurrentNode = pHeadNode;
    Person *pPrevNode = pCurrentNode;
    while(pCurrentNode && pCurrentNode->IDNumb!=IDNumb)
    {
        if (pCurrentNode->IDNumb==IDNumb)
            break;

        pCurrentNode = pCurrentNode->nextPerson;
    }

    cout << pCurrentNode->name << endl;
    cout << pCurrentNode->IDNumb << endl;

}
}


void SaveListToFile()
{
ofstream outfile;

outfile.open("PROG05.txt");

Person* pCurrentNode = pHeadNode;
while(pCurrentNode)
{
    Person* pNode = pCurrentNode;
    pCurrentNode = pCurrentNode->nextPerson;
    outfile << pNode->name << endl;
    outfile << pNode->IDNumb << endl;
}

outfile.close();
}

void LoadListFromFile()
{
ifstream infile;

infile.open("PROG05.txt");

string name;

while (getline(infile, name))
{
    string IDNumb;
    getline(infile, IDNumb);

    if (!pHeadNode)
    {
        pHeadNode = new Person(name);
        pHeadNode->IDNumb = IDNumb;

    } else {
        Person *pCurrentNode = pHeadNode;
        Person *pPrevNode = pCurrentNode;
        while(pCurrentNode)
        {
            pPrevNode = pCurrentNode;
            pCurrentNode = pCurrentNode->nextPerson;
        }
        pPrevNode->nextPerson = new Person(name);
        pPrevNode->nextPerson->IDNumb = IDNumb;

    }

}


infile.close();
}

int main()
{
int choice;
bool stop = false;

LoadListFromFile();
do
{
    do
    {
        DrawMenu();
        cin >> choice;
        if (choice<1 || choice>9)
            cout << "Incorrect choice. Try again" << endl << endl;
    }while(choice<1 || choice>9);

    switch(choice)
    {
        case 1:
            AddNewEntry();
            SaveListToFile();
            break;
        case 2:
            DeleteEntry();
            SaveListToFile();
            break;
        case 3:
            ChangeEntry();
            SaveListToFile();
            break;
        case 4:
            DisplayEntries();
            break;
        case 5:
            SearchEntriesIDNumb();
            break;
        case 6:
            SearchEntriesName();
            break;
        case 7:
            LoadListFromFile();
            DisplayEntries();
            cout << "List has been Loaded" << endl;
            break;
        case 8:
            SaveListToFile();
            cout << "List has been Saved to the File" << endl;
            break;
        case 9:
            cout << "Thank you for using the program" << endl;
            stop = true;
            break;
        default:

            break;
    }

}while(!stop);
SaveListToFile();

Person* pCurrentNode = pHeadNode;
while(pCurrentNode)
{
    Person* pNode = pCurrentNode;
    pCurrentNode = pCurrentNode->nextPerson;
    delete pNode;
}

return 0;
}
The code is Deleting the Name also and not replacing it. I need the function to Change the Name and keep the ID Number.
In lines 210-216 you delete the found node instead of changing it.
So would I just need to delete the code on those lines? Or do I need to change the code?
Think about it for a minute. You have created a linked list with elements in alphabetical order according to the name field. Now you are taking a node and changing the name field. What needs to happen to this structure you just located?

I was going to leave this as an open-ended question, but decided to give you the answer.
1. You need to replace the contents of the name field with the new name.
2. The list element is (probably) no longer in alphabetical order, so it must be removed from the list.
3. The modified element must be re-inserted into the list in the correct location.

Make sure the updated node has the old ID value and the new name. Then you're good.
I have the code to where the program is Changing the name and not deleting it. But how am i supposed to get the ID Number to not delete and to print with the changed name?
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
void ChangeEntry()
{
string name;
string IDNumb;

if (pHeadNode)
{
    cin.clear();
    cin.sync();

    cout << "\nEnter name of Entry you want to edit: ";
    getline(cin, name);

    Person *pCurrentNode = pHeadNode;
    Person *pPrevNode = pCurrentNode;
    while(pCurrentNode && pCurrentNode->name!=name)
    {
        if (pCurrentNode->name==name)
            break;

        pCurrentNode = pCurrentNode->nextPerson;
    }

    if (pCurrentNode)
    {
        cin.clear();
        cin.sync();
        cout << "\nEnter name of new Entry: ";
        getline(cin, name);

        if (pHeadNode)
        {
            if (FindName(name))
            {
                cout << "" << endl;
                cout << "Name already exists";
                cout << "" << endl;
                return;
            }
        }

        if (pCurrentNode==pHeadNode)
        {
            pHeadNode = pCurrentNode->nextPerson;
        } else {
            pPrevNode->nextPerson = pCurrentNode->nextPerson;
        }
        delete pCurrentNode;

        cout << "\nEnter ID Number for new Entry: ";
        getline(cin, IDNumb);

        Person* pNewNode = new Person(name);
        pNewNode->IDNumb = IDNumb;
        InsertNewNode(pNewNode);

        cout << "" << endl;
        cout << "Entry is changed" << endl;
        cout << "" << endl;
    } else {
        cout << "" << endl;
        cout << "Entry is not found" << endl;
        cout << "" << endl;
    }
} else {
    cout << "" << endl;
    cout << "Address book is empty " << endl;
    cout << "" << endl;
    return;
}
}


This is what i have now for the change entry function. It changes the name and the Id number. How would i go about just leaving the ID Number alone?
First I refer back to my original steps:

1. You need to replace the contents of the name field with the new name.
2. The list element is (probably) no longer in alphabetical order, so it must be removed from the list.
3. The modified element must be re-inserted into the list in the correct location.


Then your question:

But how am i supposed to get the ID Number to not delete and to print with the changed name?


Then look at your code, esp. lines 48-55.

Notice, I never said to delete the node. I said to remove it from and reinsert it into the list. However, you are going to the effort of deleting it and creating a new node. And on top of it, you ask the user for a new ID number.

You need to do 1 of 2 things:
1. (perferred) don't delete the old node. Replace lines 48 - 55 with
1
2
pCurrentNode->name = name;
InsertNewNode(pCurrentNode);

2. Save the ID number from pCurrentNode sometime before line 48, get rid of lines 50 - 51, and insert the saved ID number into the new node in line 54.
Topic archived. No new replies allowed.