Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Construct a C++program for tracking your many accounts and passwords. Name the CPP as you wish. Don't worry -- we're using encryption.Write it withthese menu

Construct a C++program for tracking your many accounts and passwords. Name the CPP as you wish. Don't worry -- we're using encryption.Write it withthese menu options (but formatted and presented as you wish):

MENU A Add a password E Erase a password L List all passwords Q quit ...your choice: L # Account Password -- -------------------- -------- 1 Amazon.com 12345Ac 2 eTrade 12345eT 3 Wells Fargo 12345WF 

For each password, your program should trackat leastthenameof the website or account (like Wells Fargo) and the password (like 12345). You may add as many other attributes as you wish to describe the account. Remember -- this is foryou.

Requirements

  1. Use a singly-linked list based "set" of struct-based nodes withC++ strings. Do not use C++ standard template library .
  2. Duplicate attribute(s) used for comparison is/are not allowed in a set.
  3. Construct a value-returningcompare function, ordering by account name (aA-zZ). You may apply tie breakers if you wish.
  4. Format and align your output as anicely-spaced tableof no more than 72 characters wide, with one course per line and no skipped lines between courses. Do includecolumn headings.
  5. Include sequence numbers in the listing, and use that in the "Erase" option.
  6. Includeserializationto a file named as you wish -- it's yours and you will not be submitting it anyway.
  7. Serialize down onlyencodedversions ofall strings. Refer to Module 7 for the encode function provided, and either use it as is or modify it or use something different.
  8. Be sure todecodewhen serializing up!
  9. Donotincludesortingoptions -- this is aset.
  10. Donotincludeeditingoptions -- editing a node may upset its placement in the set.
  11. DO include sequence numbersin the listing, and use them to find a match in the "erase" option. Include the range of valid numbers in the prompt.

Submityour CPPonly.

PLEASE ASSIST AND REPLY WITH ENGLISH AND ENGLISH CODE ONLY.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions