标签: c++ tree
我搜索了各种网站但找不到任何简单的树实现。请不要建议BST或avl树,请使用向量或数组实现树。
BST
avl
答案 0 :(得分:0)
创建标准二叉树,但使用数组(向量)索引而不是内存指针。
struct Node { Data_Item data; unsigned int index_left_subtree; unsigned int index_right_subtree; };