Search This Blog

Thursday, 5 January 2012

Reverse Linked List

/*********** Recursion ***************/


private Node reverseList(Node root) {
if (root.next == null) {
return root;
} else {
Node tail = reverseList(root.next);
root.next.next = root;
root.next = null;
return tail;
}
}



/************* Iteration ***************/

private Node reverseIte(Node head) {
Node remaining = null;
Node previous = null;

while (head != null) {
remaining = head.next;
head.next = previous;
       previous = head;
       head = remaining;
}
return previous;
}


  

1 comment:

  1. Borgata Hotel Casino & Spa - Mapyro
    Hotel address: 남양주 출장샵 595 East Flamingo Road, Everett, 용인 출장마사지 MA 02149 - 경주 출장안마 See map. View real-time driving directions to Borgata Hotel Casino 제천 출장안마 & Spa, 경상북도 출장마사지

    ReplyDelete