首页 > 代码库 > Cracking the Coding Interview Q2.2

Cracking the Coding Interview Q2.2

Implement an algorithm to find the kth to last element of a singly linked list.

 

思路:双指针

参考 http://www.cnblogs.com/jdflyfly/p/3810697.html