Home » Program to Rotate Doubly Linked List by N Nodes

Program to Rotate Doubly Linked List by N Nodes

by Online Tutorials Library

Q. Program to rotate doubly linked list by N nodes.

Explanation

In this program, we need to create a doubly linked list and rotate it by n node. This can be achieved by maintaining a pointer that starts from the head node and traverses the list until current points to the nth node. Move the list from head to the nth node and place it after tail. Now nth node will be the tail of the list and node next to nth node will be the new head. Here, n should always be greater than 0 but less than the size of the list.

Original List:

Program to rotate doubly linked list by N nodes

List after rotating it by 3 nodes:

Program to rotate doubly linked list by N nodes

In the above example, we need to rotate list by 3 nodes. First, we iterate through the list until current points to the 3rd node which is, in this case, are node 3. Move the list from node 1 to 3 and place it after tail. Now, node 4 will be new head and node 3 will be the new tail.

Algorithm

  1. Define a Node class which represents a node in the list. It will have three properties: data, previous which will point to the previous node and next which will point to the next node.
  2. Define another class for creating the doubly linked list, and it has two nodes: head and tail. Initially, head and tail will point to null.
  3. addNode() will add node to the list:
    1. It first checks whether the head is null, then it will insert the node as the head.
    2. Both head and tail will point to a newly added node.
    3. Head’s previous pointer will point to null and tail’s next pointer will point to null.
    4. If the head is not null, the new node will be inserted at the end of the list such that new node’s previous pointer will point to tail.
    5. The new node will become the new tail. Tail’s next pointer will point to null.
  4. rotateList() will rotate the list by given n nodes.
    1. First, check whether n is 0 or greater than or equal to many nodes present in the list.
    2. If yes, print the list as it is.
    3. If no, define a node current which will point to head.
    4. Iterate through the list till current reaches the nth node.
    5. Tail’s next will point to head node.
    6. Make node next to current as the new head. Head’s previous will point to null.
    7. The current node will become tail of the list. Tail’s next will point to null.
  5. display() will show all the nodes present in the list.
    1. Define a new node ‘current’ that will point to the head.
    2. Print current.data till current points to null.
    3. Current will point to the next node in the list in each iteration.

Solution

Python

Output:

Original List:   1 2 3 4 5   Updated List:   4 5 1 2 3   

C

Output:

Original List:   1 2 3 4 5   Updated List:   4 5 1 2 3   

JAVA

Output:

Original List:   1 2 3 4 5   Updated List:   4 5 1 2 3   

C#

Output:

Original List:   1 2 3 4 5   Updated List:   4 5 1 2 3   

PHP

Output:

Original List:   1 2 3 4 5   Updated List:   4 5 1 2 3   

Next Topic#

You may also like