Sunday 21 April 2013

Traversing a Single Linked List

Traversing a SLL

  The following method traverses a list (and prints its elements):


 Cell insertAtFront(Cell oldFront, Object value) {
    Cell newNode = new Cell(value, oldFront);
    return newNode;
}
 
 Use this as:  myList = insertAtFront(myList, value);

Why can’t we just make this an instance method of Cell?

Using a header node

A header node is just an initial node that exists at the front of every list, even when the list is empty. The purpose is to keep the list from being null, and to point at the first element

 inseritn a node after a given number
Inserting a node after a given value


 void insertAfter(Object target, Object value) {
    for (Cell here = this; here != null; here = here.next) {
          if (here.value.equals(target)) {
              Cell node = new Cell(value, here.next);
              here.next = node;
              return;
          }
}
    // Couldn't insert--do something reasonable here!
Inserting after (animation)

Deleting a node from sll

Deleting a node from a SLL

  1.  In order to delete a node from a SLL, you have to change the link in its predecessor
  2.  This is slightly tricky, because you can’t follow a pointer backwards
  3.  Deleting the first node in a list is a special case, because the node’s predecessor is the list header

Deleting an element from a SLL

To delete the first element, change the link in the header

delete the first elemetn

To delete some other element, change the link in its predecessor
delete some other element

Deleted nodes will eventually be garbage collected

Doubly-linked lists

   Here is a doubly linked list (DLL):

double linked list

 Each node contains a value, a link to its successor (if any), and a link to its predecessor (if any).The header points to the first node in the list and to the last node in the list (or contains null links if the list is empty)

DLLs compared to SLLs


compared to sll

 Advantages:


It can be traversed in either direction (may be essential for some programs)    Some operations, such as deletion and inserting before a node, become easier.

Disadvantages:


It requires more space. List manipulations are slower (because more links must be changed). Greater chance of having bugs (because more links must be manipulated)

Deleting a node from a DLL


deleting a node form double linked list


  1.       Node's deletion from a DLL involves changing two links.
  2.       In this example, we will delete node b.
  3.       We don’t have to do anything about the links in node b.
  4.       Garbage collection will take care of deleted nodes.
  5.       Deletion of the first node or the last node is a special case.

Other operations on linked lists


Most “algorithms” on linked lists—such as insertion, deletion, and searching—are pretty obvious; you just need to be careful.

 Sorting a linked list is just messy, since you can’t directly access the nth element—you have to count your way through a lot of other elements.

0 comments:

Post a Comment

Twitter Delicious Facebook Digg Stumbleupon Favorites More