切换主题
字数
248 字
阅读时间
2 分钟
19. 删除链表的倒数第 N 个结点 我的题解
ts
/**
* Definition for singly-linked list.
* class ListNode {
* val: number
* next: ListNode | null
* constructor(val?: number, next?: ListNode | null) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
* }
*/
function removeNthFromEnd(head: ListNode | null, n: number): ListNode | null {
const dummy = new ListNode(0,head);
let first : ListNode| null = dummy;
let second : ListNode | null= dummy;
for(let i = 0; i<=n;i++){
first=first.next;
}
while(first!=null){
first=first.next;
second=second.next;
}
if(second.next!=null){
second.next=second.next.next;
}
return dummy.next
};
给你一个链表,删除链表的倒数第 n
个结点,并且返回链表的头结点。
示例 1:
**输入:**head = [1,2,3,4,5], n = 2 输出:[1,2,3,5]
示例 2:
**输入:**head = [1], n = 1 输出:[]
示例 3:
**输入:**head = [1,2], n = 1 输出:[1]
提示:
- 链表中结点的数目为
sz
1 <= sz <= 30
0 <= Node.val <= 100
1 <= n <= sz
**进阶:**你能尝试使用一趟扫描实现吗?
贡献者
sunchengzhi