/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode removeNthFromEnd(ListNode head, int n) {
ListNode prev,current = head;
int count=0;
while(current != null){
count ++;
current = current.next;
}
int k=count-n;
current = head;
prev = head;
for(int i=0 ; i<k; i++ )
{
prev = current;
current = current.next;
}
if(prev == current)
{
prev = current.next;
head = prev;
}
else
prev.next = current.next;
return head;
}
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode removeNthFromEnd(ListNode head, int n) {
ListNode prev,current = head;
int count=0;
while(current != null){
count ++;
current = current.next;
}
int k=count-n;
current = head;
prev = head;
for(int i=0 ; i<k; i++ )
{
prev = current;
current = current.next;
}
if(prev == current)
{
prev = current.next;
head = prev;
}
else
prev.next = current.next;
return head;
}
}
--------
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.
本文介绍了一种高效算法,用于从单链表中移除倒数第N个节点,并返回修改后的链表头。通过一次遍历确定待移除节点的位置,再进行删除操作,确保了算法的时间效率。
1058

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



