劍指offer :倒數第K個節點

題目描述:輸入一個鏈表,輸出該鏈表中倒數第k個結點。  代碼: /* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode * FindKthToTail(ListNode* pLi
相關文章
相關標籤/搜索