Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.57K
1 Posted Topic
Re: I had to do this and found a much simpler fix, in the insert method starting with the first while(which I included to help) use this: while (current != NULL && !found) //search the list if (current->info == newItem) { cout << "Error" <<endl; return; //Return to the list without … |
The End.