首页 > 代码库 > LeetCode 206 Reverse a singly linked list.
LeetCode 206 Reverse a singly linked list.
Reverse a singly linked list.
Hint:
A linked list can be reversed either iteratively or recursively. Could you implement both?
递归的办法:
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ public class Solution { public ListNode reverseList(ListNode head) { if(head==null) return null; if(head.next==null)return head; ListNode p=head.next; ListNode n=reverseList(p); head.next=null; p.next=head; return n; } }
非递归,迭代的办法:
if(head == null || head.next == null) return head; ListNode current = head.next; head.next = null; while(current ! = null){ ListNode temp = current.next; current.next = head; head = current; current = temp.next; } return head;
LeetCode 206 Reverse a singly linked list.
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。