使用C5集合树数据结构
我几天来一直在努力寻找 .NET 树数据结构
,我已经阅读了许多使用 C5 库,但我还没有找到它的示例。
我已经阅读了 C5 文档,但没有找到它的示例(我承认我还没有阅读所有文档页面)。
编辑:我需要一棵具有基本功能的树,例如从父节点到子节点的搜索,反之亦然。
I have been struggling for days finding .NET Tree Data Structure
, I have read many recomendation using C5 library, but I have yet find example for it.
I have read C5 documentation but didn't find example for it (I admit I haven't read all documentation page).
Edit: I need a Tree with basic functionality like search from parent to child node and vice versa.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您仅需要树数据结构,只需定义您的数据结构即可。 (会浪费更少的时间)
If you need only tree datastructure, just define yours. (will loose less time)
如果您只需要最基本的功能,那么构建您自己的数据结构。
我快速实现了一个基本树(有向边,不一定是二叉树),假设您有一个固定的根节点。我还添加了深度优先和广度优先搜索的方法。
If you only need the most basic functionality, then build your own data structure.
I did a quick implementation of a basic tree (directional edges and not necessarily binary tree), assuming you have a fixed root node. I also added methods for searching depth first and breadth first.