博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
42-Remove Nth Node From End of List
阅读量:4948 次
发布时间:2019-06-11

本文共 1139 字,大约阅读时间需要 3 分钟。

  1. Remove Nth Node From End of List My Submissions QuestionEditorial Solution
    Total Accepted: 106592 Total Submissions: 361392 Difficulty: Easy
    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.

Submission Details

207 / 207 test cases passed.

Status: Accepted
Runtime: 8 ms

思路:利用快慢指针,快指针先走n步,然后快指针到末尾,那么慢指针走到第n个位置的前一个位置

/** * Definition for singly-linked list. * struct ListNode { *     int val; *     ListNode *next; *     ListNode(int x) : val(x), next(NULL) {} * }; */class Solution {public:    ListNode* removeNthFromEnd(ListNode* head, int n) {        ListNode *pre=head,*p=head;        for(int i=0;i
next; else return head; } if(p==NULL)return head->next; //第n+1个位置为空,那么倒数第n个位置为首元素 while(p->next){ pre = pre->next; //快慢指针同时走,直到快指针到达最后一个节点 p = p->next; } pre->next = pre->next->next;//删除该节点 return head; }};

转载于:https://www.cnblogs.com/freeopen/p/5482924.html

你可能感兴趣的文章
网页消息类
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
日常一些出现bug的问题
查看>>
同时启动多个tomcat服务器
查看>>
怎么将iphone上的照片导出到本地文件
查看>>
Repeater+DataPagerSource分页
查看>>
模块化导出
查看>>
pagebean pagetag java 后台代码实现分页 demo 前台标签分页 后台java分页
查看>>
Sphinx 2.0.8 发布,全文搜索引擎 Installing Sphinx on Windows
查看>>
pod
查看>>
ResultSet 可滚动性和可更新性
查看>>
VS2013 C++代码运行问题
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
LUOGU P2986 [USACO10MAR]伟大的奶牛聚集Great Cow Gat…
查看>>
toad for oracle中文显示乱码
查看>>
scala的REPL shell的调用
查看>>
SQL中Group By的使用
查看>>
Mybatis映射原理,动态SQL,log4j
查看>>
哪个微信编辑器比较好用?
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>