树的遍历

树的结构如图:

广度优先搜索:

class Queue(object):
    def __init__(self):
        self.items = []
        self.head = 0
        self.tail = 0
    def append(self,node):
        self.items.append(node)
        self.tail += 1
    def get(self):
        return self.items[self.head]
#树
map_list = [ #0,1   0,1
    [0,1,1,-1,-1],
    [1,0,-1,1,-1],
    [1,-1,0,-1,1],
    [-1,1,-1,0,-1],
    [1,-1,1,-1,0],
]
point = Queue()
#初始在0点
point.append(0)

while point.head<point.tail:
    for i in range(5):
        if map_list[i][point.head] == 1 and i not in point.items:
            print(i)
            point.append(i)
    point.head+=1
if __name__ == '__main__':
    print(point.items)

深度优先搜索

#-1代表不连通 1代表连通 0代表到自己的距离
import sys
sys.setrecursionlimit(10000)
map_list = [ #0,1   0,1
    [0,1,1,-1,-1],
    [1,0,-1,1,-1],
    [1,-1,0,-1,1],
    [-1,1,-1,0,-1],
    [1,-1,1,-1,0],
]
res = []
#已经遍历过的点
book_list = []
#深度优先搜索
def dfs(x):
    if x not in book_list:
        book_list.append(x)
    for i in range(5):
        if map_list[i][x] == 1 and i not in book_list:
            dfs(i)
dfs(0)
print(book_list)

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值