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

LeetCode -- Reverse Linked List

时间:2015-09-19 18:21:35      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

逆转单链表。


思路:
遍历过程中构造一个链栈,返回链栈头结点即可。


实现代码:


/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     public int val;
 *     public ListNode next;
 *     public ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode ReverseList(ListNode head) {
        ListNode h = null;
		while(head != null){
			var n = new ListNode(head.val);
			n.next = h;
			h = n;
			head = head.next;
		}
		
		return h;
    }
}


版权声明:本文为博主原创文章,未经博主允许不得转载。

LeetCode -- Reverse Linked List

标签:

原文地址:http://blog.csdn.net/lan_liang/article/details/48576059

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