Rotate a Linked List in PythonIf given the head of a singly linked list and a number K, develop a program that rotates the linked list clockwise by K places starting from the last node. ExampleInput-1 Output 1: 40 -> 50 -> 10 -> 20 -> 30 Explanation We rotated the given linked list exactly twice in this case. During the initial rotation, 5 will be the head node, and 4 will be the tail node, whereas on rotating the list a second time, 4 will be the head node, and 3 will be the tail node. Input-2 Output 2: 30 -> 10 -> 20 Explanation Here, we have performed 4 rotations of the linked list. Algorithm 1 - Rotating by Changing the Next Pointer for the kth NodeIntuition: For this strategy, we must keep three-pointers to the (k + 1)th node, the kth node, and the node that is previous to the kth node. The goal is to traverse the given linked list till the kth node and set the node present at (k + 1)th pointer to NULL, and the next of the last node of the linked list should store the current head node, after which the (k + 1)th node will become the new head of our linked list. Algorithm
Code ImplementationCode Output: The original linked list is: 1 4 5 5 7 2 1 5 3 9 The rotated Linked list is: 5 5 7 2 1 5 3 9 1 4 Time Complexity: The time complexity of this approach is O(n). This is because we have traversed the given linked list one time to rotate the linked list, where n is the number of nodes in the linked list. Space Complexity: The space complexity of this approach is O(1). It is constant because no extra space is acquired in the program. Algorithm 2 - By Rotating the K Number of NodesIntuition: The approach here is analogous to the last one. In this, the single linked list is converted to something like a circular linked list and afterward moved k-1 steps ahead from the head node, but before shifting, make the (k - 1)th node next to null and the following node as head. Algorithm
Code ImplementationCode Output: The original List is: 1 2 3 4 5 6 7 8 The rotated linked list is: 6 7 8 1 2 3 4 5 Time Complexity: The time complexity of this approach is O(n). This is because we have traversed the given linked list one time to rotate the linked list, where n is the number of nodes in the linked list. Space Complexity: The space complexity of this approach is O(1). It is constant because no extra space is acquired in the program. Conclusion
Next TopicHow to Re-size Choropleth maps - Python |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India