栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

python实现二叉树层次遍历(BFS)

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

python实现二叉树层次遍历(BFS)

# 求二叉树路径DFS
class TreeNode:
    def __init__(self, val = None):
        self.left = None
        self.right = None
        self.val = val
class BTree:
    def insert(self,root,node): #构建二叉排序树
        if root is None:
            return node
        if root.val < node.val:
            root.right = self.insert(root.right,node)
        else:
            root.left = self.insert(root.left,node)
        return root
    def order_print(self,root):
        if root is None:
            return None
        self.order_print(root.left)
        print(root.val, end=" ")
        self.order_print(root.right)
    def dfs(self, root, path, path_lst):
        if root:
            path += str(root.val) # 每递归到一个节点就加入该path
            if not root.left and not root.right: # 遇到叶子节点则把整个path加入path_lst
                path_lst.append(path)
            else:
                path += '->'
                self.dfs(root.left,path, path_lst)
                self.dfs(root.right,path, path_lst)
        return path_lst
    def bfs(self, root):
        level_order = []
        que = [root]
        if root == None:
            return level_order
        while que:
            templist = []
            for i in range(len(que)):
                node = que.pop(0)
                templist.append(node.val)
                if node.left:
                    que.append(node.left)
                if node.right:
                    que.append(node.right)
            level_order.append(templist)
        return level_order

lst = [5,1,2,3,6,8,9]
root = TreeNode(1)
root.left = TreeNode(2)
root.right = TreeNode(3)
root.left.left = TreeNode(4)
root.left.right = TreeNode(5)
root.right.left = TreeNode(6)
root.right.right = TreeNode(7)
bt = BTree()
# for i in range(1, len(lst)):
#     bt.insert(root, TreeNode(lst[i]))
bt.order_print(root)
print()
print(bt.bfs(root))

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/725002.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号