CSc 21200 Homework 5

$30.00

Category: You will Instantly receive a download link for .zip solution file upon Payment

Description

5/5 - (3 votes)

1. Create a template class called btNode with the following:
a. Non-member template functions for in/post/pre-order traversal
b. Non-member functions for a tree to print, copy, height, and number of nodes.
2. Create a template class for a binary tree using btNode (Q1) with the spec in the given header
file.
3. Create a template class for a binary tree using dynamic array with the spec in the given
header file.
4. Create a template class for a Binary Search Tree using the btNode binary tree class (Q2).
a. Member functions to add, remove, minimum, maximum, and search.
5. Create a template class for a Heap using just a dynamic array.
a. Member functions to add, remove, minimum, and maximum.
b. Heapsort, return a sorted array.