Question
C++ For this assignment you must write a program that implements a membership directory for the BINGO. The membership directory should be implemented as a
C++
For this assignment you must write a program that implements a membership directory for the BINGO. The membership directory should be implemented as a Binary Search Tree. The directory should be able to create/delete member accounts, edit a members information, search for a specific member, display a list of members, and output list of members and their information to a file in post-order (the file format is described below).Every entry in the membership directory should have the following properties: a member account name (one word), the members first, last, and middle names, the number of games won, and the number of games lost. Use the account name to sort the BST. Your program should implement a text-based interface capable of handling the following commands: exit exits the program load
The save file should have the following format:
# of Entries Member Account Name
1Last, First Middle
Wins Losses
Member Account Name 2
Last, First Middle
Wins Losses
Member Account Name 3
Last, First Middle
Wins Losses
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started