为了账号安全,请及时绑定邮箱和手机立即绑定

python中什么数据结构 index ?

python中什么数据结构 index ?

小怪兽爱吃肉 2018-12-18 19:15:53
python中什么数据结构 index
查看完整描述

1 回答

?
开满天机

TA贡献1786条经验 获得超13个赞

貌似Python标准库并没提供对树的操作,这是基本的数据结构操作,用递归很容易实现:
def tree_find(tree, value):
def tree_rec(tree, iseq):
if isinstance(tree, list):
for i, child in enumerate(tree):
r = tree_rec(child, iseq + [i])
if r is not None:
return r
elif tree == value:
return iseq
else:
return None

查看完整回答
反对 回复 2019-01-07
  • 1 回答
  • 0 关注
  • 723 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信