亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

刷題系列 - 序列化和反序列化一個二叉樹

發布時間:2020-08-12 13:46:36 來源:ITPUB博客 閱讀:130 作者:張國平 欄目:編程語言

序列化和反序列化一個二叉樹,是很開放的一題,就是給出一個二叉樹,用序列化方法生成一個字符串;然后用反序列化方法把這個字符串生成原來二叉樹。這個在編程時候各個類型一般都有序列化的,用于存儲。

這里面要用到python中list轉化字符串方法 ','.join(list), 和字符串轉換為list的方法string.split(',')。

其實可以用之前刷題的幾個題目來組合,比如遍歷二叉樹生成中序和后序兩個隊列,合并為一個隊列,作為序列化方法;然后有一題是按照中序和后序隊列生成二叉樹,就可以作為反序列化的方法使用。當然,這樣會有很多冗余數據。

其實這個題目比較麻煩的地方就是優化,實現倒是很不難。

我這邊用了序列化層級遍歷,就是從根節點到葉子節點一層層按照從左到用遍歷,如果某個節點的左或者右子節點為空,用#號代替;最后葉子節點下面會都是”#“號,這里做了個判斷,如果某層都是#號,視作為空,結束遍歷。

反序列化采用對應的方法,這里不多說,看代碼即可。

# Definition for a binary tree node.
# class TreeNode(object):
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None
class Codec:
    def serialize(self, root):
        """Encodes a tree to a single string.
        
        :type root: TreeNode
        :rtype: str
        """
        if root != None:
            checkList = [root]
        else:
            checkList = []
        AllNodeList = []
        while checkList != []:
            nextList = []
            for Node in checkList:
                if Node != '#':
                    AllNodeList.append(str(Node.val))
                    if Node.left == None:
                        nextList.append('#')
                    else:
                        nextList.append(Node.left)
                    if Node.right == None:
                        nextList.append('#')
                    else:
                        nextList.append(Node.right)
                else:
                    AllNodeList.append(Node)
            if len(set(nextList)) == 1 and '#' in nextList:
                nextList = []
            checkList = nextList
        return ','.join(AllNodeList)
        
    def deserialize(self, data):
        """Decodes your encoded data to tree.
        
        :type data: str
        :rtype: TreeNode
        """
        if data == '':
            currentLevel = []
            root = None
        else:
            AllNodeList = data.split(",")
            root = TreeNode(int(AllNodeList.pop(0)))
            currentLevel =[root]
        while currentLevel != [] and AllNodeList!= []:
            nextLevel = []
            for node in currentLevel:
                leftValue = AllNodeList.pop(0)
                if leftValue != '#':
                    node.left = TreeNode(int(leftValue))
                    nextLevel.append(node.left)
                    
                rightValue = AllNodeList.pop(0)
                if rightValue != '#':
                    node.right = TreeNode(int(rightValue))
                    nextLevel.append(node.right)
            print([node.val for node in nextLevel])
            currentLevel = nextLevel
        return root  
# Your Codec object will be instantiated and called as such:
# codec = Codec()
# codec.deserialize(codec.serialize(root))
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凤庆县| 公安县| 广河县| 舒城县| 杂多县| 皮山县| 玛沁县| 开平市| 阜阳市| 中卫市| 保康县| 循化| 永胜县| 资溪县| 庆阳市| 肇州县| 钟山县| 温宿县| 出国| 宜黄县| 望城县| 青神县| 拉萨市| 察隅县| 嵩明县| 民丰县| 博罗县| 炉霍县| 桃源县| 夏邑县| 稷山县| 探索| 淳化县| 宜黄县| 阿尔山市| 博客| 南雄市| 祁门县| 元谋县| 丹阳市| 墨竹工卡县|