打卡,第14天
今天的题目是Remove Nth Node From End of List,一开始以为是道很简单的题目,后来看dicuss
时才发现是自己没看清题目。
Given a linked list, remove the nth node from the end of list and return its head.
For example, Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end, the linked list becomes 1->2->3->5. Note: Given n will always be valid. Try to do this in one pass.
一开始没看到Try to do this in one pass.
,然后就用两遍遍历方法去做了:
上面这个方法太简单了,还是看看在dicuss
中的方法吧:
这个看起来会比较简单,想法就是利用快慢指针去做,先让fast
指针先走n
步,然后在fast
指针和slow
指针一起移动,这样fast
和slow
始终保持着n个节点的距离,当fast
为最后一个节点时,slow
就指向倒数第n+1个节点,这时就可以把倒数第n个节点删掉了。
有一个更简洁的版本,不过有点难懂就是了:
这个和上一个的思路其实是完全一样的,只是实现方法思路不一样就是,这里的t1
是指向某个节点(包括一开始时虚拟的头结点)的next
指针的指针。