您好,登錄后才能下訂單哦!
二叉樹的題目告一段落,后面陸續做了些基礎的題;感覺沒有什么好記錄的。
這次是一個非常基礎題目用遞歸和遍歷兩個方法反轉一個單鏈隊列。如下所示。
Input:
1->2->3->4->5->NULL
Output:
5->4->3->2->1->NULL
遞歸的方法,考慮了下其實方法很多,我想了比較簡單的,就是取出第一個節點,放在后續節隊列的最后,如此循環遞歸直到只有一個節點位置。代碼是很好寫,就是效率太低,提交運行時間1008ms,實在是,主要每次一個節點排序,都要遍歷整條隊列,其實應該有更好的。
# Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: def reverseList(self, head: ListNode) -> ListNode: if head == None or head.next == None: return head node = self.reverseList(head.next) head.next = None checknode = node while checknode.next != None: checknode = checknode.next checknode.next = head return node
遍歷方法也很簡單,就是新建一個隊列做棧,把單鏈隊列的按照順序放入,然后反向推出節點,重組隊列返回即可。提交運行時間34ms, 效率高很多。
# Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: def reverseList(self, head: ListNode) -> ListNode: if head == None: return head nodeStack = [] while head != None: nodeStack.append(head) head = head.next print(len(nodeStack)) newHead = nodeStack.pop() point = newHead while nodeStack != []: point.next = nodeStack.pop() point = point.next point.next = None return newHead
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。