亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

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 關注
  • 754 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號