matlab tree 结构


From matlab: matlab tree

将该链接中的文件包下载,解压,然后将@tree copy到正在编辑的文件夹中,即可使用


使用要点记载:

1.添加根节点: 

t = tree(' I am the root')

其中,‘I am the root’ 为根节点所存储的内容


2.添加节点

t = t.addnode(1,'I am the left child of root')

1表示parent节点的index,‘I am the left child of root’为该节点上存储的内容

PS:   因为tree class的定义不是继承handler类,因此必须使用 t = t.addnode(), 单纯t.addnode() 是不会更改t的

PS:节点存储内容为cell类型,即为可变长度的content,根据我的实验需要,我想把它改成某种自定义的数据结构(还未行动)


【t node1】 = t.addnode(1,'I am node1');
其中,返回值node1表示新添加的节点node1对应的index


3.得到某节点上存储的content

t.get(node1)




你可能感兴趣的:(matlab tree 结构)