中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

發布時間: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

通辽市| 杭锦后旗| 芜湖县| 赫章县| 通道| 浦江县| 连云港市| 海丰县| 密山市| 锡林浩特市| 额济纳旗| 荥经县| 泰顺县| 大名县| 南澳县| 黑山县| 兴宁市| 彰化市| 托克托县| 当涂县| 仁化县| 福贡县| 禹州市| 榕江县| 延川县| 肃宁县| 北辰区| 安泽县| 云霄县| 涟水县| 太湖县| 五台县| 黔南| 吉木乃县| 杂多县| 上思县| 旌德县| 彭水| 阳谷县| 伊春市| 会宁县|