摘要: public class Solution { public ListNode FindKthToTail(ListNode head,int k) { if (head == null) { return null; } ListNode first = head; int length = 0; ... 阅读全文
posted @ 2019-03-16 19:58 紫色的雪 阅读(94) 评论(0) 推荐(0)