Programming Challenge 2


Description

Create and test a generic array class, similar to std::array. Provide operations for constructing and accessing the data. Write a generic function sort that operates on any type inside your array. Finally, write specializations of the class and function for the character data type. The specialized class would store the characters in a string instead of a literal array. Don't write your own sort, instead invoke std::sort inside of your function (simply to save time).

Details


General Instructions, Turning in assignments, and Grading

General Instructions

Turn in Instructions

Each assignment will be turned in through GitHub classroom. Please find the link to create a repository at the top of this page, or through this link. Assignments are due BEFORE, let me repeat, before class starts. This does not mean five minutes after class starts.

Points