题解 | #删除链表的倒数第n个节点#

删除链表的倒数第n个节点

https://www.nowcoder.com/practice/f95dcdafbde44b22a6d741baf71653f6

从某位老师那里学来的一个比较巧妙地方法😸😸😸
/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 * };
 */
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param head ListNode类 
 * @param n int整型 
 * @return ListNode类
 */
struct ListNode* removeNthFromEnd(struct ListNode* head, int n ) {
    // write code here
    if(head==NULL) {
        return head;
    }

    struct ListNode* p=head;
    struct ListNode* pre=head;
    struct ListNode* explore=head;
    int count=0;
    while(p!=NULL) {
        count++;
        p=p->next;
    }

    int index=count-n+1;
    if(index==1) {
        return head->next;
    }
    while(index>2) {
        index--;
        pre=pre->next;
    }
    pre->next=pre->next->next;
    return head;
}

全部评论

相关推荐

11-28 17:58
门头沟学院 Java
美团 JAVA开发 n×15.5
牛客786276759号:百度现在晋升很难的 而且云这块的业务没美团好 你看百度股价都跌成啥样了
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务