Reverse Linked List

As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman.
I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.
Given the head of a singly linked list, reverse the list, and return the reversed list.
LeetCode Problem - 206
class Solution {
// Method to reverse a singly linked list
public ListNode reverseList(ListNode head) {
// Initializing variables to keep track of previous and current nodes
ListNode prev = null;
ListNode current = head;
// Iterating through the list
while(current != null){
// Storing the next node temporarily
ListNode temp = current.next;
// Reversing the link of the current node
current.next = prev;
// Moving to the next node
prev = current;
current = temp;
}
// Returning the new head of the reversed list
return prev;
}
}




