Skip to content

Latest commit

 

History

History
 
 

019.Remove_Nth_Node_From_End_of_List

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

019.Remove_Nth_Node_From_End_of_List (Easy)

链接

题目:https://leetcode.com/problems/remove-nth-node-from-end-of-list/
代码(github):https://github.com/illuz/leetcode

题意

删除一个单向链表的倒数第 N 个节点。

分析

  1. 直接模拟,先算出节点数,再找到节点删除
  2. 用两个指针,一个先走 N 步,然后再一起走。

这里用 C++ 实现第一种, 用 Python 实现第二种。
Java 的话和 C++/Python 差不多,不写出来了。