Doubly Linked List Help

delete.
Last edited on
remove.
Last edited on
I can provide any additional info, just let me know.
This code is having multiple error .
Most of the places Template wrong declaration of template class like
Iterator<T>::Iterator(Node* current, List* ourList) should be like
Iterator<T>::Iterator(Node<T>* current, List<T>* ourList)

and Node<T>* new_node = new Node(data); should be like
Node<T>* new_node = new Node<T>(data);

use NULL instead of nullPtr .

your code is damn confusing,which part of code do u think not working?
@mike9407

That's a bit rich coming from you: you seem to be always confused - trolling again are we?
Topic archived. No new replies allowed.