billryan / algorithm-exercise

Data Structure and Algorithm notes. 数据结构与算法/leetcode/lintcode题解/
https://algorithm.yuanbin.me
3.44k stars 892 forks source link

Update remove_nth_node_from_end_of_list.md #38

Closed billryan closed 8 years ago

billryan commented 8 years ago

修改了部分代码

  1. 头部检查部分返回head,而不是NULL。因为head有效而n<1时,应该返回head。
  2. 哑节点修正