分层数据 - 父 ID 或嵌套集模型
我正在开发一个需要类别的项目,我使用了嵌套集模型并且效果很好。我有同一个项目的另一部分,但是它需要不同类型的层次结构,永远只有一个父级。因此,一个项目只能与另一个项目相关。
您是否会说,简单地使用parent_id比完整的嵌套集模型更合适?
谢谢你!
I'm working on a project that required categories, I used a nested set model and it worked out well. I have another portion of the same project, however it requires a different type of hierarchy, there will only ever be a parent. So, an item can only EVER relate to one other item.
Would you say for this, using simply parent_id would be more appropriate then a full nested set model?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想说没关系。我认为嵌套集和相邻树模型是不同的数据结构,但属于相同类型的层次树。我想到了三元特里树和帕特里夏特里树。两者具有不同的数据结构,但类型 trie 相同。
I would say it doesn't matter. I think of nested set and adjacent tree model as different data structure but the same type of hierarchical tree. I think of a ternary trie and a patricia trie. Both have a different data structure but the type trie is the same.