我是靠谱客的博主 冷酷魔镜,最近开发中收集的这篇文章主要介绍python elementtree 父节点_在Python ElementTree中,如何获取树中某个元素的所有祖先的列表?...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

I need "get_ancestors_recursively" function.

A sample run can be

>>> dump(tr)

>>> input_element = tr.getiterator("element")[0]

>>> get_ancestors_recursively(input_element)

['anc1', 'anc2']

Can somebody help me with this ?

解决方案

In the latest version of ElementTree (v1.3 or later), you can simply do

input_element.find('..')

recursively. However, the ElementTree that ships with Python doesn't have this functionality, and I don't see anything in the Element class that looks upwards.

I believe this means you have to do it the hard way: via an exhaustive search of the element tree.

def get_ancestors_recursively(e, b):

"Finds ancestors of b in the element tree e."

return _get_ancestors_recursively(e.getroot(), b, [])

def _get_ancestors_recursively(s, b, acc):

"Recursive variant. acc is the built-up list of ancestors so far."

if s == b:

return acc

else:

for child in s.getchildren():

newacc = acc[:]

newacc.append(s)

res = _get_ancestors_recursively(child, b, newacc)

if res is not None:

return res

return None

This is slow because of the DFS, and cranks out a lot of lists for garbage collection, but if you can deal with that it should be fine.

最后

以上就是冷酷魔镜为你收集整理的python elementtree 父节点_在Python ElementTree中,如何获取树中某个元素的所有祖先的列表?...的全部内容,希望文章能够帮你解决python elementtree 父节点_在Python ElementTree中,如何获取树中某个元素的所有祖先的列表?...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部