[Solved] SOLVED:a Linked List data structure from scratch

$25

File Name: SOLVED:a_Linked_List_data_structure_from_scratch.zip
File Size: 452.16 KB

SKU: [Solved] SOLVED:a Linked List data structure from scratch Category: Tag:
5/5 - (1 vote)

Topics: C/C++ Syntax Pointers Functions Dynamic Allocation of Memory Data Structures: Linked Lists Object Orientation Specifications: You are to create a Linked List data structure from scratch. This linked list should be Templated so that any data could be stored within it. You will create a Linked List Class and a Node Class The Linked List should contain the following methods in its public interface: Constructor Destructor AddToFront(T data) create a node containing T data and add it to the front of the list AddToEnd(T data) create a node containing T data and add it to eh end of the list AddAtIndex(T data, int index) create a node containing T data and add it to the list at index, return boolean for success or failure (optional: you could also return an integer with failure codes since this method can fail multiple ways) NextNode Move the current pointer to the next node, wraps to front if it navigates past the end InsertAfterCurrent(T data) Create a node containing T data and insert it after wherever the current pointer is pointing RemoveCurrent() Delete the current item and return its contents RemoveAtIndex(int index) delete the index # node in the list and return its contents RemoveFromFront() Delete first item and return its contents RemoveFromEnd() Delete last item and return its contents RemoveFirst(T data) find first instance of T data and remove it RemoveAll(T data) find each instance of T data and remove it ElementExists(T data) Returns a T/F if element exists in list Find(T data) Look for data in the list, return a pointer to its node IndexOf(T data) returns an index of the item in the list (zero-based) RetrieveFront returns the data contained in the first node, does not delete it RetrieveEnd returns the data contained in the last node, does not delete it Retrieve(int index) returns the data contained in node # index, does not delete it, returns null if index is out of bounds or data does not exist ToArray Create an array from the contents of the list and return it Empty Empty out the list, delete everything Length How many elements are in the list More methods private or public should be created as needed to facilitate the functionality of the Interface methods. If you feel your list needs more functionality, feel free to create it. Node Class Constructor Destructor Getters & Setters The node class should be fairly rudimentary. It should be templated so you can store anything in it.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] SOLVED:a Linked List data structure from scratch
$25