Question: In this assignment, you are required to implement a new version of the personal password management program. The behaviors of the program are the same
In this assignment, you are required to implement a new version of the personal password management program. The behaviors of the program are the same as those in Assignment 1, but this time, you have to use linked list as the data structure to store the password records. The following template files have been given to you (available in Blackboard). Import the files in a new C++ project and use them as the starting point of your code:
PasswordRecord.h This file should contain a structure of a password record, including the password description, the password and encryption mode. Node.h This file contains the declaration of the Node class. You DO NOT have to modify this file. Node.cpp This file contains the definition of the Node class. You have to implement the constructor. LinkedList.h This file contains the declaration of the LinkedList class. You DO NOT have to modify this file. LinkedList.cpp This file contains the definition of the LinkedList class. You have to implement the constructor, destructor and functions. Assignment_2.cpp This file contains the main() program and a number of supporting functions. You need to complete the missing part, indicated by comments in the code. Read carefully the details of each file first before coding. The following is a visual representation of the password record organization in the program: 
LinkedList PassworoRecord Password Description Encryption Mode Node PasswordRecord Password Description Encryption Mode Password econd Password Description Encryption Mode NULL
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
