CS 201- Data Structures Library  –   Phase 2  Solved

35.00 $

Category: Tags: , , , , , ,
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

5/5 - (1 vote)

 

Phase 2 of the CS201 programming project, we will be built around a balanced binary search tree.  In particular, you should implement red-black trees as described in the CLRS textbook for the class RBTree.

The public methods of your class should include the following (keytype and valuetype indicate the types from the template):

Function Description Runtime
RBTree(); Default Constructor. The tree should be empty O(1)
RBTree(keytype k[], valuetype V[], int s); For this constructor the tree should be built using the arrays K and V containing s items of keytype and valuetype. O(s lg s)
~RBTree(); Destructor for the class. O(n)
valuetype * search(keytype k); Traditional search.  Should return a pointer to the valuetype stored with the key.  If the key is not stored in the tree then the function should return NULL. O(lg n)
void insert(keytype k, valuetype v); Inserts the node with key k and value v into the tree. O(lg n)
int remove(keytype k); Removes the node with key k and returns 1.  If key k is not found then remove should return 0. O(lg n)
int rank(keytype k); Returns the rank of the key k in the tree.  Returns 0 if the key k is not found. The smallest item in the tree is rank 1. O(lg n)
keytype  select(int pos); Order Statistics. Returns the key of the node at position pos in the tree.  Calling with pos = 1 should return the smallest key in the tree, pos = n should return the largest. O(lg n)
keytype *successor(keytype k) Returns a pointer to the key after k in the tree.  Should return NULL if no successor exists. O(lg n)
keytype *predecessor(keytype k) Returns a pointer to the key before k in the tree.  Should return NULL if no predecessor exists. O(lg n)
int size(); returns the number of nodes in the tree. O(1)
void preorder(); Prints the keys of the tree in a preorder traversal. O(n)
void inorder(); Prints the keys of the tree in an inorder traversal. O(n)
void postorder(); Prints the keys of the tree in a postorder traversal. O(n)

 

Your class should include proper memory management, including a destructor, a copy constructor, and a copy assignment operator.

 

For submission, all the class code should be in a file named RBTree.cpp.  Create a makefile for the project that compiles the file phase2main.cpp and creates an executable named phase2.  A sample makefile is available on Blackboard.  Place both RBTree.cpp and makefile into a zip file and upload the file to Blackboard.

☐ Create your RBTree class

☐ Modify the makefile to work for your code (changing compiler flags is all that is necessary)

☐   Test your RBTree class with the sample main provided on the cs-intro server

☐   Make sure your executable is named phase2

☐   Develop additional test cases with different types, and larger trees

☐   Create the zip file with RBTree.cpp and makefile

☐   Upload your zip file to Blackboard

 

No late submissions will be accepted.  There will be an opportunity to resubmit by March 26.  Resubmissions will have a 20 point penalty.

 

  • Phase2-5ztild-gya3zp.zip