标签: c++11 data-structures binary-tree
我想存储一个二进制树,其中每个节点都是T类型。由于没有标准的树容器,我建议这样:
std::map<size_t,std::pair<T,T>> my_tree; WHERE: size_t : the depth std::pair<T,T> :left and right branches
我觉得这不是一种专业的方式..有什么建议吗? 附:我不喜欢第三方库。 谢谢:)
修改 我的解决方案不对,不仅不专业。我不知道我在想什么。