Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

****PLEASE DO IT IN C++***** ****MUST BE DONE IN C++***** For this assignment, implement search trees from scratch (i.e. no use of predefined coding routines

****PLEASE DO IT IN C++*****

image text in transcribed

image text in transcribed

image text in transcribedimage text in transcribed

image text in transcribed

image text in transcribed

****MUST BE DONE IN C++*****

For this assignment, implement search trees from scratch (i.e. no use of predefined coding routines to perform tree actions). You will be creating and comparing operations on BST, AVL and Splay trees. There will be a separate output file for each type of tree and a separate file for summary results. The summary results file should be opened in append mode so all your results are in a single file. The user will enter the title of the test (describes test scenario e.g. "Random Searches" "80% Searches on 50% of numbers" "70% Actions Inserts" etc.) The user will enter the names of the two input files and the four output files. Reading from a file (file doesn't exist?, empty? - print message and continue), insert a series of numbers into each of the trees, printing the tree to a file and to the screen each time along with the tree height after each insert. Test case 1 is below, a set of numbers you need to insert into the three trees, in that order. The beginning of your output should look similar to the output below for the BST. NOTE: this is only ONE test scenario ..... you will be part of a team to create additional test cases to cover all the test scenarios. You utimately will run YOUR teams test cases AND the required test cases. The printTree() function can display your tree in whatever way you choose, the tree needs to be easy to read. Show the tree, and tree height, after every insert. The trees should show one after the other on the screen and in the output file. Test 1: Random Searches (display test number and title of test) Insert 9 Tree height is: 0 Insert 7 Tree height is: 1 Insert 14 7 14 Tree height is: 1 Insert 25 9 7 14 25 Tree height is: 2 Insert 2 7 14 2 25 Tree height is: 2 Insert 23 7 14 25 Tree height is: 3 The AVL Tree will need to show, after every insert, that it rebalances correctly and maintains the structure of an AVL tree. You will need to implement functions for the rotations: LL, RR, LR, RL. The Splay Tree will need to show after every insert that the new node rotates to the root. Implement functions for the rotations: Zig, Zag, Zig-Zig, Zag-Zag, Zig-Zag, Zag-Zig. For the output of the AVL and Splay Trees you also need to list the number and types of rotations performed to create the new tree. NOTE: it is expected to see each rotation combination shown in test cases - i.e. what does tree look like, what value is inserted, what does tree look like after insert and rotation(s) used. Your program will then process a file of searches, inserts and deletes from the trees. The file will contain an action code: S-search, I-insert, and D-delete (what if it isn't one of those?????) and the number for that action As above - if rotations occur because of the action you need to display them. Splay example: Search 27 - found at level 5 with parent 25- rotations zig-zig, zig-zag, zig NOTE: Account for twin chain ....... just add duplicate node to twin chain (i.e. no additional data) ---- display of node 9 with no twin chain is: 9; with twin chain of 2 is: 9 (2) Display the action and value and what tree looks like after the action takes place. You are also to print the number of operations (and rotations if AVL or splay tree) to perform the action. Keep track of the actions and the number of operations in a 2-dimensional array (row = action, columns = BST, AVL, Splay). When no more actions print the table and sum the columns by search, insert, delete and overall. Title of Test Operation Counts Search Insert BST AVL Splay aa bb cc ddeeff gghh ii Delete Total jjjk kk III Create a summary table of all the test cases runs (test case, search, insert, delete, overall) and write a report summarizing your results. Summary Operation Counts Test Title BST AVL Splay 1 2 Title of Test 1 Title of Test 2 mmm nnn ppp qqq 000 n Title of Test n uuu w www Total of all n tests XXXX yyyy zzzz For this assignment, implement search trees from scratch (i.e. no use of predefined coding routines to perform tree actions). You will be creating and comparing operations on BST, AVL and Splay trees. There will be a separate output file for each type of tree and a separate file for summary results. The summary results file should be opened in append mode so all your results are in a single file. The user will enter the title of the test (describes test scenario e.g. "Random Searches" "80% Searches on 50% of numbers" "70% Actions Inserts" etc.) The user will enter the names of the two input files and the four output files. Reading from a file (file doesn't exist?, empty? - print message and continue), insert a series of numbers into each of the trees, printing the tree to a file and to the screen each time along with the tree height after each insert. Test case 1 is below, a set of numbers you need to insert into the three trees, in that order. The beginning of your output should look similar to the output below for the BST. NOTE: this is only ONE test scenario ..... you will be part of a team to create additional test cases to cover all the test scenarios. You utimately will run YOUR teams test cases AND the required test cases. The printTree() function can display your tree in whatever way you choose, the tree needs to be easy to read. Show the tree, and tree height, after every insert. The trees should show one after the other on the screen and in the output file. Test 1: Random Searches (display test number and title of test) Insert 9 Tree height is: 0 Insert 7 Tree height is: 1 Insert 14 7 14 Tree height is: 1 Insert 25 9 7 14 25 Tree height is: 2 Insert 2 7 14 2 25 Tree height is: 2 Insert 23 7 14 25 Tree height is: 3 The AVL Tree will need to show, after every insert, that it rebalances correctly and maintains the structure of an AVL tree. You will need to implement functions for the rotations: LL, RR, LR, RL. The Splay Tree will need to show after every insert that the new node rotates to the root. Implement functions for the rotations: Zig, Zag, Zig-Zig, Zag-Zag, Zig-Zag, Zag-Zig. For the output of the AVL and Splay Trees you also need to list the number and types of rotations performed to create the new tree. NOTE: it is expected to see each rotation combination shown in test cases - i.e. what does tree look like, what value is inserted, what does tree look like after insert and rotation(s) used. Your program will then process a file of searches, inserts and deletes from the trees. The file will contain an action code: S-search, I-insert, and D-delete (what if it isn't one of those?????) and the number for that action As above - if rotations occur because of the action you need to display them. Splay example: Search 27 - found at level 5 with parent 25- rotations zig-zig, zig-zag, zig NOTE: Account for twin chain ....... just add duplicate node to twin chain (i.e. no additional data) ---- display of node 9 with no twin chain is: 9; with twin chain of 2 is: 9 (2) Display the action and value and what tree looks like after the action takes place. You are also to print the number of operations (and rotations if AVL or splay tree) to perform the action. Keep track of the actions and the number of operations in a 2-dimensional array (row = action, columns = BST, AVL, Splay). When no more actions print the table and sum the columns by search, insert, delete and overall. Title of Test Operation Counts Search Insert BST AVL Splay aa bb cc ddeeff gghh ii Delete Total jjjk kk III Create a summary table of all the test cases runs (test case, search, insert, delete, overall) and write a report summarizing your results. Summary Operation Counts Test Title BST AVL Splay 1 2 Title of Test 1 Title of Test 2 mmm nnn ppp qqq 000 n Title of Test n uuu w www Total of all n tests XXXX yyyy zzzz

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

Handbook Of Relational Database Design

Authors: Candace C. Fleming, Barbara Von Halle

1st Edition

0201114348, 978-0201114348

More Books

Students also viewed these Databases questions

Question

35. Verify property 4 of the sample correlation coefficient.

Answered: 1 week ago

Question

explain the concept of strategy formulation

Answered: 1 week ago