Starting from:

$40

COP4530 Project 2: Doubly-Linked List Container Solved - STL Interface

Project 2: Doubly-Linked List Container -- STL Interface
Objectives: Understanding generic programming and information hiding by developing generic containers. Getting familiar with the concept of class template and its usage. Use of nested (iterator) classes. Use of namespace. Operator overloading. 
Task: Implement a doubly-linked list class template List and its associated iterators, with the same interface and iterator usage as that found in the C++ STL
Requirements:
1. A header file List.h is provided, which contains the interfaces of the doubly-linked list class template List. In particular, it contains a nested Node structure, and two nested iterators class (iterator and const_iterator). You cannot change anything in the List.h file.
List.h
2. A driver program test_list.cpp has been included. It is an example test program that will run some tests on your implementation of the doubly-linked list class template for different data types (it tests List<int and List<string. Don't make any changes to this driver program. However, your class will be tested with more than just this sample driver. It is recommended that you write other driver programs of your own, for more thorough testing.
test_list.cpp
3. You need to implement the member functions of the doubly-linked list class template List in a file named List.hpp. Note that List.hpp has been #included in the header file List.h (towards the end of the file). As we have discussed in class, you should not try to compile List.hpp (or List.h) by themselves. These comprise a header that will be #included into other programs you might write.
You need to implement all the member functions of List<T, List<T::iterator, and List<T::const_iterator, and non-class overloaded functions operator==(), operator!=(), and operator<<() included in List.h. The design of the List container follows the one presented in the textbook. It has three member variables, theSize, head, and tail. theSize records the number of elements in the list. The head and tail pointers point to the sentinel nodes. They represent the beginning and end markers. They do not store any real elements in the list. It is OK for you to use the code provided in the textbook, but note that the definitions will be in the List.hpp file here, not defined inline in the class definition block, like they are in the textbook. Also, this implementation will contain more features than those in the textbook's implementation, so there will be some new functions for you to write. We describe the requirements of each function in the following (this specification may not write the function prototypes in detail, so please refer to the List.h file for the detailed function prototype).
            Member functions of nested const_iterator class:
·       const_iterator(): default zero-parameter constructor. Set pointer current to nullptr.
·       operator*(): returns a reference to the corresponding element in the list by calling retrieve() member function.
·       operator++(), operator++(int), operator--(), operator--(int): prefix and postfix increment and decrement operators.
·       operator==() and operator!=(): two iterators are equal if they refer to the same element.
·       retrieve(): return a reference to the corresponding element in the list.
·       const_iterator(Node *p): one-parameter constructor. Set pointer current to the given node pointer p.
            Member functions of nested iterator class:
·       iterator(): default zero-parameter constructor.
·       operator*(): returns a reference to the corresponding element in the list by calling retrieve() member function.
·       operator++(), operator++(int), operator--(), operator--(int): prefix and postfix increment and decrement operators.
· iterator(Node *p): one-parameter constructor.
 Member functions of List class template 
· List(): Default zero-parameter constructor. Call init() to initialize list member variables.
· List(const List &rhs): Copy constructor. Create the new list using elements in existing list rhs.
· List(List &&rhs): move constructor.
· List(int num, const T & val = T()): Construct a list with num elements, all initialized with value val.
· List(const_iterator start, const_iterator end): construct a List with elements from another list between start and end. Including the element referred to by the start iterator, but not the end iterator, that is [start, end).
·  List(std::initializer_list<T iList) : construct a List with elements from the initializer list that is passed in. Note that this will allow declarations like this:
  List<int myList {2, 4, 6, 8, 10, 12, 14, 16};
·  ~List(): destructor. You should properly reclaim all dynamically allocated memory
· operator=(List &rhs): copy assignment operator
· operator=(List &&rhs): move assignment operator
· operator=(std::initializer_list<T iList) : assign the initializer list data to be the calling object's new data. Example call:
 list2 = {1, 3, 5, 7, 9, 11, 13, 15};
·  size(): return the number of elements in the List.
·  empty(): return true if no element is in the list; otherwise, return false.
·  clear(): delete all the elements in the list
· reverse(): reverse the order of the elements in the list. That is, the original first element becomes the last, while the original last becomes the first.
 ·  front() and back(): return reference to the first and last element in the list, respectively.
push_front() and push_back(), insert the new object as the first and last element into the list, respectively; and their move versions.
· pop_front() and pop_back(), delete the first and last element in the list, respectively.
· remove(const T & val): delete all nodes with value equal to val from the list.
. remove_if(PREDICATE pred): delete all nodes for which pred returns true. PREDICATE is a template type, allowing a function object to be passed. (i.e. a true/false condition/function can be passed in via the functor).
· print(ostream &os, char ofc = ' '): print all elements in the list, using character ofc as the deliminator between elements in the list.
· begin(): return iterator to the first element in the list.
· end(): return iterator to the end marker of the list (tail).
· insert(iterator itr, const T & val): insert value val ahead of the node referred to by itr; and its move version
· erase(iterator itr): delete node referred to by itr. The return value is an iterator to the following node.
· erase(iterator start, iterator end): delete all nodes between start and end (including start but not end), that is, all elements in the range [start, end).
 init(): initialize the member variables of list.
 Non-class functions 
 operator==(const List<T & lhs, const List<T & rhs): check if two lists contain the same sequence of elements. Two lists are equal if they have the same number of elements and the elements at the corresponding position are equal.   operator!=(const List<T & lhs, const List<T & rhs): opposite of operator==().
 operator<<(ostream & os, const List<T & l): print out all elements in list l by calling List<T::print() function. 
4.  Write a makefile for your project, to compile the test_list.cpp driver into an executable called proj2.x. Your program must be able to compile and run on the linprog machines.
5. Analyze the worst-case run-time complexities of the member functions reverse() and remove_if(). Give the complexities in the form of Big-O. Your analysis can be informal; however, it must be clearly understandable by others. Name the file containing the complexity analysis as "analysis.txt".
Downloads
Here again are links to the List.h and test drivers, as well as my output from the test_list.cpp driver program (myout.txt).
List.h
test_list.cpp
myout.txt
Submission
Tar up List.hpp, your makefile, and analysis.txt into a single tar archive and submit online via Canvas, in the "Assignments" section. Use the Assignment 2 link to submit. Make sure you tar your programs correctly.
Your tar file should be named in this format, all lowercase:  lastname_firstname_p2.tar
Example:  My tar file would be:     myers_bob_p2.tar

More products