List-String

Due August 6th @ 8pm

A Sample Solution

Overview

This assignment will test your usage of C++ classes and basic linked-list operations.

Details

You are working on a text manipulation package for a simplified dialect of Martian. The Martian dictionary, when written using the roman alphabet, is overwhelmingly comprised of words that are a multiple of 5 letters long. In an effort to optimize memory usage for this situation, you've been tasked with developing a replacement for the standard string class that stores words as a linked-list of smaller strings, each of which is no more than 5 characters each.

All of the design and test-generation has been worked out already, all that falls to you is to implement this class.

Files

Download the following files:

Requirements