有人可以帮我在matlab中实现二叉树吗?我们可以像使用指针在C/C++中实现相同的方式一样吗?我碰巧使用’struct’读了一个与相同和解决方案相关的问题但是该代码执行’n’次,因为n是预定义的.但我处理的问题是树必须动态形成.即
1.Take a node
1.1 Do some processing
1.2 If the resulting two answers satisfy the condition, they are added as the left and right children
1.3 Continue the process till the condition is false.
2.Trace back and move to the next node.
提前致谢.
最佳答案 这可能只能部分回答您的问题.要获得接近C/C++中指针机制的任何地方,您可以从检查MATLAB的面向对象特性开始.即创建句柄类的能力.
有一个完整记录的implementation of a doubly-linked list示例,它非常接近二叉树.