码迷,mamicode.com
首页 > 其他好文 > 详细

Solution 24: 链表翻转

时间:2015-07-08 10:53:52      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

程序

public class ListReverse {
	public ListNode reverseList(ListNode head) {
		if (head == null) {
			return head;
		}

		ListNode pre = head;
		ListNode cur = pre.next;

		while (cur != null) {
			ListNode next = cur.next;
			cur.next = pre;
			pre = cur;
			cur = next;
		}

		return pre;
	}
}

  

Solution 24: 链表翻转

标签:

原文地址:http://www.cnblogs.com/harrygogo/p/4629483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!