Lab03 - Arrays & Lists

Question 1 - Array

Complete the implementation of an array-based list in alist-incomplete.cpp. You can add other methods that you find necessary.
You should use function main to test all the methods.

Question 2 - Singly linked list

Complete the implementation of singly linked list in slist-incomplete.cpp. You can add other methods that you find necessary.
You should modify function main to test all the methods.

Question 3 - Doubly linked list

Implement a doubly linked list data structure that provides the same functions and the same interface as the class SList in Question 2.