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.
用两个链表,一个当尺子,一个修改!
class Solution {
public ListNode removeNthFromEnd(ListNode head, int n) {
if(head == null) {
return null;
}
ListNode p = head;
ListNode q = head;
for(int i=0;i<n;i++) {
q = q.next;
}
if(q == null) {
head = head.next;
return head;
}
while(q.next != null) {
p = p.next;
q = q.next;
}
p.next = p.next.next;
return head;
}
}
本文介绍了一种高效的方法来解决链表中删除倒数第N个节点的问题。通过使用双指针技巧,即一个指针作为测量尺子,另一个指针用于实际的节点删除操作,实现了在O(n)的时间复杂度内解决问题的目标。
622

被折叠的 条评论
为什么被折叠?



