Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please program the following question in C++ and include an output example in the solution. Please read the following instructions here, carefully. Programming Problem 5

Please program the following question in C++ and include an output example in the solution. Please read the following instructions here, carefully. image text in transcribed

Programming Problem 5 on page 491 of the book (screenshot below) Just names (format: fname Iname) and birthdays (format: yyyy-mm-dd) as data attributes are sufficient. Implement your BST as a link-based ADT by deriving BST Node from your Node classes from Labs 2 and 2b Remember the BST Node will contain two data attributes - name and birthday For the data, create a text file of data named 'InputData.txt as follows - name or birthday entry per line, one pair of name and birthday in two consecutive lines. Read the data to create your BST for the database by name or birthday as needed - remember two different trees will be needed and the node insertions will be different depending on which data tree it is Write out the listing of everyone by name to a file called 'NamesOutput.txt' using both pre-order and post-order traversal mechanisms in that sequence. Ensure that the output file contains names and birthdays on a single line separated by tabs. Make sure that each section is clearly identified by a header Write out the listing of everyone by birthday to a different file called 'BirthdaysOutput.txt' using an in-order and breadth-first traversal mechanisms in that sequence. Ensure that the output file contains names and birthdays on a single line separated by tabs. Make sure that each section is clearly identified by a header. Include your code source tree, input text file and the two output files in your zip upload. Only one file upload is allowed Ensure I can run the programs by using my own input file without having to fix your code for file locations. Any other questions or clarifications - ask on the forum first. Write a program that maintains a database containing data, such as name and birthday, about your friends and relatives. You should be able to enter, remove, modify, or search this data. Initially, you can assume that the names are unique. The program should be able to save the data in a file for use later 5. Design a class to represent the database and another class to represent the people. Use a binary search tree of people as a data member of the database class You can enhance this problem by adding an operation that lists everyone who satisfies a given criterion. For example, you could list people born in a given month. You should also be able to list everyone in the database Programming Problem 5 on page 491 of the book (screenshot below) Just names (format: fname Iname) and birthdays (format: yyyy-mm-dd) as data attributes are sufficient. Implement your BST as a link-based ADT by deriving BST Node from your Node classes from Labs 2 and 2b Remember the BST Node will contain two data attributes - name and birthday For the data, create a text file of data named 'InputData.txt as follows - name or birthday entry per line, one pair of name and birthday in two consecutive lines. Read the data to create your BST for the database by name or birthday as needed - remember two different trees will be needed and the node insertions will be different depending on which data tree it is Write out the listing of everyone by name to a file called 'NamesOutput.txt' using both pre-order and post-order traversal mechanisms in that sequence. Ensure that the output file contains names and birthdays on a single line separated by tabs. Make sure that each section is clearly identified by a header Write out the listing of everyone by birthday to a different file called 'BirthdaysOutput.txt' using an in-order and breadth-first traversal mechanisms in that sequence. Ensure that the output file contains names and birthdays on a single line separated by tabs. Make sure that each section is clearly identified by a header. Include your code source tree, input text file and the two output files in your zip upload. Only one file upload is allowed Ensure I can run the programs by using my own input file without having to fix your code for file locations. Any other questions or clarifications - ask on the forum first. Write a program that maintains a database containing data, such as name and birthday, about your friends and relatives. You should be able to enter, remove, modify, or search this data. Initially, you can assume that the names are unique. The program should be able to save the data in a file for use later 5. Design a class to represent the database and another class to represent the people. Use a binary search tree of people as a data member of the database class You can enhance this problem by adding an operation that lists everyone who satisfies a given criterion. For example, you could list people born in a given month. You should also be able to list everyone in the database

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

Probabilistic Databases

Authors: Dan Suciu, Dan Olteanu, Christopher Re, Christoph Koch

1st Edition

3031007514, 978-3031007514

More Books

Students also viewed these Databases questions

Question

identify the elements of orientation

Answered: 1 week ago