Click here to Skip to main content
16,016,557 members

Comments by Member 10540766 (Top 17 by date)

Member 10540766 16-Feb-14 17:59pm View    
Im not sure i understand what you mean?
Printf would not output anything either
Member 10540766 13-Feb-14 20:24pm View    
I have tested the remove method and it removes perfectly, but does not output the strings such as:

else
{
current.next.prev = current.prev;
current.prev.next = current.next;
current.prev = null;
current.next = null;
Output += "\r\n" + "Node removed from Doubly Linked List" + "\r\n";
}

Also i noticed the find method does not output anything either
Member 10540766 13-Feb-14 18:33pm View    
In the remove i want it to remove a node and return a string saying if it worked or not, is it bad to code it that way?
Member 10540766 12-Feb-14 2:51am View    
Thanks Bill!, but where would i move the find and remove codes to get it to work?
Member 10540766 10-Feb-14 21:57pm View    
Im having trouble following the code even with a breakpoint, any advice on an easier way to follow it? Or to write it out step by step??