This is what I have so far, but it\'s not working in the test file. Basically skips to the else if(cnode == preposition)
if(cnode == preposition)
void LinkedList::Delete(Nod
1: Take the pointer from the previous node and point it to the next one after the one you want to delete
2: Delete the pointer from the previous node to the current node
3: Delete the pointer from the next node to the current node (if it is a doubly-linked list)