树数据结构 (GWT) 的字符串路径
我的挑战是这样的......我得到一个字符串路径(例如 x1/x2/x3/Xn、Xn/x2/x3 等)(例如 String path = Project.getName() )。所以基本上,我可以有任何类型的路径(任何级别和任何深度)。我正在尝试找到一种方法将其转换为数据结构,以便我可以在我的 gwt CellTree 中实现它。到目前为止,我已经从这个示例实现了 CellTree GWT Cell 树,如何使用?< /a> .
因为,我不知道级别或深度,所以我有点迷失...我想我应该使用递归函数来分割我的字符串路径,然后添加它们,但检查它们是否已经存在,等等...
我还查看了这个问题从字符串列表构造树结构路径。但我对 java 和设计模式有点陌生,所以任何指针或代码位(示例)都会有所帮助。
My challenge is this... I'm getting a string path (e.g x1/x2/x3/Xn, Xn/x2/x3, etc.) (e.g String path = Project.getName() ). So basically, I can have any type of path (any level and any depth). I'm trying to find a way to convert this to a data structure so I can implement it in my gwt CellTree. So far, I have implemented the CellTree from this example GWT Cell tree, how to use? .
Since, I have no idea of the level or the depth, I am a bit lost... I think I should go with a recursive function which split my string path then add them, but check if they already existe, etc...
I also looked over this question Construct a tree structure from list of string paths. But I'm kind of new to java and design patterns, so any pointers or bits of code (example) would help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)