vote up 3 vote down star
1

What is a doubly linked list's remove method?

flag

67% accept rate

6 Answers

vote up 7 vote down check

The same algorithm that Bill the Lizard said, but in a graphical way :-)

Remove From Linked List

link|flag
vote up 10 vote down

The general algorithm is as follows:

  • Find the node to remove.
  • node.previous.next = node.next
  • node.next.previous = node.previous
  • node.previous = null
  • node.next = null
  • Dispose of node if you're in a non-GC environment

You have to check the previous and next nodes for null to see if you're removing the head or the tail, but those are the easy cases.

link|flag
I always use the sneaky trick of having a sentinal at the start and end of the list (so an empty list has two elements). This eases my code greatly, using a little more memory. Of course, the searches have to start at first->next and end at last->prev but I don't have to worry about the edge cases. – paxdiablo Nov 7 '08 at 1:29
That is sneaky, but I like it. :) – Bill the Lizard Nov 7 '08 at 1:40
Or store your list as a ring. There's only one sentinal, it appears at both head and tail, and an empty list consists of one element with both fields pointing to itself. – Steve Jessop Nov 7 '08 at 2:28
vote up 0 vote down

Are you asking for the name of a method in the api? That answer would simply be remove, assuming you are asking about java.util.LinkedList which is in fact a double linked list.

...or are you asking about what the name of the algorithm to remove an element from that type of data structure is called? Well.. the answer for that would also be to remove an element. Now for the actual algorithm to do it... it's really just a matter of changing the next pointer in the previous node and the last pointer in the next node. However, if you are using your data structure from multiple threads, you will need to either synchronize the remove method, or do the removal steps in an order that will make sense for your usage pattern for the data structure.

link|flag
I was asking for the method body and signature. – twodayslate Nov 7 '08 at 1:34
vote up 3 vote down
public void remove ()
{
    if (getPreviousNode () != null)
    	getPreviousNode ().setNextNode (getNextNode ());
    if (getNextNode () != null)
    	getNextNode ().setPreviousNode (getPreviousNode ());	
}
link|flag
Is it really that simple? It can't be... – twodayslate Nov 7 '08 at 2:09
That is applied to the node to be deleted (i.e. it doesn't "search" for the node). Yes, it is that simple. – Will Hartung Nov 7 '08 at 2:24
Yeah, it deleted the current node. Gotcha. This is what I had before I posted the question.. my directions were a little different but I just wanted to see the default method to get an idea. – twodayslate Nov 7 '08 at 2:32
public boolean remove() { if(crnt != null) { if(crnt == head) { head = crnt.getNext(); } – twodayslate Nov 7 '08 at 2:33
if(crnt == tail) { tail = crnt.getPrev(); } ListNode<E> temp = crnt.getNext(); if(crnt.getNext() != null) { – twodayslate Nov 7 '08 at 2:34
show 4 more comments
vote up 0 vote down

What about the current pointer pointer? You have to move crnt to the next node. http://pastebin.ca/1249635

link|flag
vote up 1 vote down

Doubly Linked List Implementation Remove Methods (from my second programming assignment):

public void remove(int index) {
	if(index<0 || index>size())
	throw new IndexOutOfBoundsException("Index out of bounds. Can't remove a node. No node exists at the specified index");
	if(size()==0) {
		throw new NullPointerException("Empty list");
	}
	if(!isEmpty()) {
		Node current;
		//starting next one to our head
		current = head.next;
		for(int i=0;i<index;i++) {
			current = current.next;
		}
		current.previous.next = current.next;
		current.next.previous = current.previous;
		numOfNodes--;
		sizeChangeCount++;
	}
}

public boolean remove(T o) {
	Node current = head;
	for(int i=0;i<size();i++) {
		current=current.next;
		if(current.data.equals(o)) {
			current.previous.next = current.next;
			current.next.previous = current.previous;
			numOfNodes--;
			sizeChangeCount++;
			return true;
		}			
	}
	return false;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.