劍指offer 求鏈表的倒數第K個節點

1.快慢指針法spa /*指針struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public:     ListNode* FindKthToTail(ListNode* pListHead, unsigned int k)
相關文章
相關標籤/搜索