Doubly Linked List part 2


there is an interactive demonstration of a double linked list HERE



copy over the files from you last lab


you will add the functions



// Deletes the node pointed to by head, returns true if sucessful
bool DeleteAtHead();

// Deletes the node pointed to by tail, returns true if sucessful
bool DeleteAtTail();

// start at head , search for the value passed in. if the node is found delete in and return true, return false if a matching node is not found
bool Delete(T value);






YOUR ToString MUST WORK WITH THE WEBSITE  
http://cs.csubak.edu/~msarr/cmps2020/viewlist.php
and show up as double linked list