Inorder successor of node in a Binary Tree
June 11, 2012
Check if a Binary Tree is a Sum Tree or not
June 11, 2012

Reversing a doubly linked list

Given a doubly linked list. Write a function that accepts a pointer to the head of the list and reverse the list.

The structure of the node in a doubly linked list is as below:

struct Node
{
   int data;
   Node* prev; // pointer to the previous node in the list
   Node* next; // pointer to the next node in the list
};

Solution:

I have earlier written post about reversing a singly linked list iteratively and recursively.

Reversing a doubly linked list is much simpler as compared to reversing a singly linked list. We just need to swap the prev & next pointers in all the nodes of the list and need to make head point to the last node of original list (which will be the first node in the reversed list).

Here is the code

 

void reverseDLL(Node*& head)
 {
    while(head)
    {
       // Swapping the prev & next pointer of each node
       Node * t = head->prev;
       head->prev = head->next;
       head->next = t;
       if(head->prev != NULL)
          head = head->prev;  // Move to the next node in original list
       else
          break;              // reached the end. so terminate
    }
 }

 

Please let me know your comments / feedback / suggestions
———————————————————————-

4 Comments

  1. Anonymous says:

    thank you! it's great.

  2. Anonymous says:

    thank you! it's great.

  3. krupa says:

    Its awesome! Thanks a lot

  4. thank you it's easy way

Leave a Reply to Anonymous Cancel reply

Your email address will not be published. Required fields are marked *