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

[LeetCode]题解:019-Remove Nth Node From End of List

时间:2015-09-28 15:52:56      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

题目来源:

https://leetcode.com/problems/remove-nth-node-from-end-of-list/


 

题意分析:

  这道题是给定一个链表,删除倒数第n个节点。提醒,1.输入的链表长度必然大于n,2.尽量通过访问一次就得到结果。


 

题目思路:

  这道题的问题在于如何找到倒数第n个节点。由于只能访问一次,所以可以建立两个链表,tmp1和tmp2。tmp1先访问第一个到n个节点。这时候,tmp2从0开始访问。等tmp1访问结束的时候,tmp2刚好访问到倒数第n个节点。


 

代码(python):

技术分享
 1 # Definition for singly-linked list.
 2 # class ListNode(object):
 3 #     def __init__(self, x):
 4 #         self.val = x
 5 #         self.next = None
 6 
 7 class Solution(object):
 8     def removeNthFromEnd(self, head, n):
 9         """
10         :type head: ListNode
11         :type n: int
12         :rtype: ListNode
13         """
14         ans = ListNode(0);
15         ans.next = head
16         tmp1 = ans
17         tmp2 = ans
18         i = 0
19         while i < n:
20             tmp1 = tmp1.next
21             i += 1
22         while tmp1.next:
23             tmp1 = tmp1.next
24             tmp2 = tmp2.next
25         tmp2.next = tmp2.next.next
26         return ans.next
27         
View Code

 


 

转载请注明出处:http://www.cnblogs.com/chruny/p/4844007.html

[LeetCode]题解:019-Remove Nth Node From End of List

标签:

原文地址:http://www.cnblogs.com/chruny/p/4844007.html

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