溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

刷題系列 - 用遞歸和遍歷兩個方法反轉(zhuǎn)一個單鏈隊列

發(fā)布時間:2020-08-11 12:36:27 來源:ITPUB博客 閱讀:163 作者:張國平 欄目:編程語言

二叉樹的題目告一段落,后面陸續(xù)做了些基礎(chǔ)的題;感覺沒有什么好記錄的。

這次是一個非?;A(chǔ)題目用遞歸和遍歷兩個方法反轉(zhuǎn)一個單鏈隊列。如下所示。

Input: 1->2->3->4->5->NULL
Output: 5->4->3->2->1->NULL

遞歸的方法,考慮了下其實方法很多,我想了比較簡單的,就是取出第一個節(jié)點(diǎn),放在后續(xù)節(jié)隊列的最后,如此循環(huán)遞歸直到只有一個節(jié)點(diǎn)位置。代碼是很好寫,就是效率太低,提交運(yùn)行時間1008ms,實在是,主要每次一個節(jié)點(diǎn)排序,都要遍歷整條隊列,其實應(yīng)該有更好的。

# 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

遍歷方法也很簡單,就是新建一個隊列做棧,把單鏈隊列的按照順序放入,然后反向推出節(jié)點(diǎn),重組隊列返回即可。提交運(yùn)行時間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
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI