I need to create a delete method inside of a doubly Linked List. I am having trouble, as I think that I need to have 4 cases.
- if the list is empty
- if the node being deleted is the head
- if the node is the tail
- if the node is somewhere in the middle of the list
This is the code that I have so far.
public void delete(Node n) {
if (head == null) {
System.out.println("the list is empty");
} else if (head != null) {
head = n;
Node newHead = n.next;
newHead = head;
} else if (n.next == null) {
Node beforeTail = n.previous;
beforeTail.next = null;
} else if (n.next != null || n.previous != null) {
Node inFront = n.previous;
Node inBack = n.next;
inFront.next = inBack;
inBack.previous = inFront;
} else {
System.out.println("error");
}
}
Here is the test program:
public class TestLL {
public static void main(String[] args){
/*Create a bunch of free standing nodes */
Node n1= new Node(new Integer(11));
Node n2= new Node(new Integer(12));
Node n3= new Node(new Integer(13));
Node n4= new Node(new Integer(14));
Node n5= new Node(new Integer(15));
Node n6= new Node(new Integer(16));
Node n7= new Node(new Integer(17));
/* link them */
LL myLL =new LL();
myLL.printList(); // prints "empty list"
myLL.add(n1); //11
myLL.add(n3); //13
myLL.add(n5); //15
myLL.add(n2); //12
myLL.add(n7); //17
myLL.printList(); //should print 11, 13, 15, 12, 17; one per line
System.out.println();
myLL.delete(n3);
myLL.addAfter(n4,n1);
myLL.printList(); //should print 11,14,15,12,17 one per line
System.out.println();
myLL.delete(n7);
myLL.delete(n2);
myLL.printList();//should print 11,14,15 one per line
}
}
I am not really sure what to do at all. Also I cannot use any methods already in Java. Thank you for your help.

headis notnull, thatifstatement will run, to the exclusion of everything else. – Dave Newton Oct 21 '11 at 15:02head != nullis alwaystrue— why do you check? Next, instead of deleting theNode n, you start removing the head, inserting thenodeinstead. After that, you saven.nextto a variable, and immediately overwrite it—are you sure you need to do that? The list can go on, but I believe you must draw doubly-linked list on a napkin, and model the situation; when you know which pointers go where, you'll be in a great shape to rewrite the method. – alf Oct 21 '11 at 15:06