Here is the exercise.
1) Write a program using vectors and iterators that allows a user to maintain a list of his favorite games. The program should allow the user to list all the game titles, add a game title, and remove a game title.
My Pseudo Code
1) Accept list of games titles from user.
2) Show titles
3) Offer options to either add or remove a game title.
Allow user to search for game title
if search is succesful give the user the option of removing the title or cancelling
otherwise
report that there is no such title
ask user to search again
4) update game titles
also show all games removed from list
5)show all game titles
6) offer option to exit program
2) Show titles
3) Offer options to either add or remove a game title.
Allow user to search for game title
if search is succesful give the user the option of removing the title or cancelling
otherwise
report that there is no such title
ask user to search again
4) update game titles
also show all games removed from list
5)show all game titles
6) offer option to exit program
if by any chance, someone can add to this pseudo-code or help me finish it out and make it better that would be greatly appreciated.
Thanks in advance.