Reverse a singly linked list.
Example:
Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
Follow up:
A linked list can be reversed either iteratively or recursively. Could you implement both?
Java Solution : Iterative Method (Three pointer approach)
prev , current , next
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode reverseList(ListNode head) {
if(head == null)
return null;
ListNode current = head;
ListNode prev = null;
ListNode next = null;
while(current !=null){
next = current.next;
current.next = prev;
prev = current;
current = next;
}
head = prev;
return head;
}
}
No comments:
Post a Comment