由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
SanFrancisco版 - python, 怎么能把 tree存到 memory了 ?
相关主题
问问几个软件公司所用的编程语言 (转载)work joke
有一天python会不会像perl一样悄悄的消亡了 (转载)Joke: I am Overworked
零基础转码工指南,FAQ陆续更新。 (转载)上周五在Chase把cash存到check堵死了目前还没到帐
Bank of America Java or C++ (转载)What's in the Stimulus for You
请教一个python OOP 实现的问题有谁知道去年买车的税是否真的能抵掉
Have a tree planted in your state for free !什么情况会hit AMT?
求推荐 砍树 tree cutting Service?CD机的Random Play是咋回事
这样会吃罚单么 (转载)房子到底在涨还在跌?
相关话题的讨论汇总
话题: tree话题: new话题: item话题: python话题: memory
进入SanFrancisco版参与讨论
1 (共1页)
i*****e
发帖数: 218
1
大家过节好!
祝大家明年更好 !
向大家请教一个问题请:
python, 怎么能把 一个tree structure 存到 memory了, 方便后面的程序用 ?
具体的问题是:
有一个 tree T, 有几千个nodes 和 leaves, (不是 binary tree, 每一级可以有任
意多的 children, 每个nodes 和 leaves,上面存的 information是很少的), 后续
需要不断地往它上面添加新的nodes 和 leaves, 就像下面的 pseudo code:
# add new item, return updated tree
new_T = add_new_item(T, new_item_to_a_particular_location)
# add another new item, return updated tree
new_new_T = add_new_item(new_T, new_item_2_to_a_particular_location)
# add more new items,return updated tree,...
由于python里, 没有 pointer, 怎么实现上面需要做的 ?把这个tree 在 memory 里
存起来 ?
还有别的办法吗 ?
s**x
发帖数: 7506
2
Python Java php 里面其实全是pointer,因为他们所谓的reference 可以为空,在C++
里的reference 不可能为空。
这么一说就应该很容易理解了。
1 (共1页)
进入SanFrancisco版参与讨论
相关主题
房子到底在涨还在跌?请教一个python OOP 实现的问题
报税一问!有包子Have a tree planted in your state for free !
房东超过21天的期限还没有退deposit 如果告胜算大么?求推荐 砍树 tree cutting Service?
加州donation tax credit这样会吃罚单么 (转载)
问问几个软件公司所用的编程语言 (转载)work joke
有一天python会不会像perl一样悄悄的消亡了 (转载)Joke: I am Overworked
零基础转码工指南,FAQ陆续更新。 (转载)上周五在Chase把cash存到check堵死了目前还没到帐
Bank of America Java or C++ (转载)What's in the Stimulus for You
相关话题的讨论汇总
话题: tree话题: new话题: item话题: python话题: memory