Java 图形库,使用对象列表而不是哈希表
我已经尝试过 JGraphT 它看起来非常有前途,但我的问题是我的对象正在发生变化,我希望图形将对象映射为 List
而不是通过哈希表。那么还有其他图书馆吗?或者我应该做什么来克服这个问题?
I've tried JGraphT It looks very promising but my problem is that my objects are changing and I want the Graph to map objects as a List
not through hash table. So is there any other library? or what I should do to overcome that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 JGraphT 是免费的,您可以下载源代码并修改它以使用 LinkedHashMap 而不是默认的哈希表。
Since JGraphT is free you can download the source code and modify it to use a LinkedHashMap instead of the default hash table.