Reverse the Linked List in PythonIn this tutorial, we will write the program of reverse the linked list in Python. The linked list is used to store the elements dynamically. The linked list is a linear data structure like the array, but it stores the element dynamically. Each element connects with its previous Node using the specific address and stores value along with the address of the next element. The whole element is known as the Node. Here we will reverse the given linked using the Python program. Let’s understand the problem statement. Problem Statement –We need to provide the linked list and return its reverse as below. Let’s implement the solution of the given problem. Method – 1First, we will create the linked list and solve this problem using the iterative approach. Code – Creating Linked List Output: 1 -> 2 -> 3 -> 4 -> In the above code, we have initialized the linked list and added some elements to it. Now, we will implement the iterative method of reversing the linked list. Reverse the Linked ListWe want to implement the reverse() method which does the following operations.
We will define the three pointers –
Let’s implement the reverse_Llist() function. Example – Output: The reverse linked list is: 4 -> 3 -> 2 -> 1 -> Explanation – In the above code, we have initialized the linked list instance and created the linked list. The reverse_Llist() function is called over the linked to reverse the list. Method -2 – Recursive MethodOutput: The reverse linked list is: 4 -> 3 -> 2 -> 1 -> Time Complexity: O(N) Auxiliary Space: O(1) ConclusionIn the above tutorial, we have implemented the solution to reverse the linked list problem. It is an essential concept of the linked list and can be asked in the interview question. We have solved this problem using Iterative and Recursive methods, and the time complexity will be the same in both methods. |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263152.html