Leetcode链表(24,25,141,142,206)206 反转链表
迭代
class Solution(object):
def reverseList(self, head):
cur, prev
2019-01-13