CISS 243 Week 7 Binary Trees

Assignment 1 Create a class (BinaryTree) template that will create a binary tree that can hold values of any data type. The class should provide functions to insert a node, a function to delete a node, functions to display the… Read More

CISS 243 Week 6 Recursion

Assignment 1 Write a function that uses recursion to raise a number to a power. The function should accept two arguments, the number to be raised and the exponent. Assume that the exponent is a nonnegative integer. Show that this… Read More

CISS 243 Week 5 Stacks and Queues

Assignment 1 Write your own version of a class template that will create a dynamic stack of any data type. The pop function must return a bool;it should return a false if it was not able to pop an item… Read More

CISS 243 Week 4 Linked List

Assignment 1 Design your own linked list class that works as a template class. It should provide member functions for appending, inserting and deleting nodes. The destructor should destroy the list. The class should also provide a member function that… Read More

CISS 243 Week 1 Operator Overloading

Assignment 1 Number of Days. Design a class called NumDays. The class’s purpose is to store a value that will convert the number of worked hours to a number of days. For example, 8 hours would be converted to 1… Read More