目錄html
更新、更全的《數據結構與算法》的更新網站,更有python、go、人工智能教學等着你:http://www.javashuo.com/article/p-zfinzipt-hh.htmlpython
/* c語言實現 */ Ptr Reverse(Ptr head, int K) { cnt = 1; new = head->next; old = new->next; while (cnt < K) { tmp = old->next; old->next = new; new = old; old = tmp; cnt++; } head->next->next = old; return new; }
取巧:用順序表存儲,先排序,再直接逆序輸出。算法
對上述取巧的解決方案:在內存裏多加幾個沒用的結點。數據結構
在pta測試中,這道題的測試數據主要關心一下幾點:測試