Java的动态表/矩阵数据结构

发布于 2024-08-21 09:01:40 字数 114 浏览 3 评论 0 原文

我需要一个类似表的数据结构的 Java 实现,我可以在其中动态插入或删除行和列。我需要非常快速地从任何行或列获取数据,并且在选择行而不是列时没有开销,反之亦然。

有谁知道已经实现了这种数据结构的库?

I need a Java implementation of table-like data structure where I could dynamically insert or delete rows and columns. I need to get data from any row or column very fast and with no overhead in selecting row over column or vice versa.

Does anyone know libraries where such data structure is already implemented?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

日暮斜阳 2024-08-28 09:01:40

您也许可以使用 DefaultTableModel。它旨在与 JTable 一起使用,但没有理由不能单独使用。您需要添加方法来检索整行或整列的数据。

You might be able to use the DefaultTableModel. It was intended to be used with a JTable, but there is no reason it can't be used alone. You would need to add methods to retrieve the data for a full row or column.

傾城如夢未必闌珊 2024-08-28 09:01:40

如果性能很关键,您可以使用 2D 数组,并实现重新分配算法 (例如加倍)以便它可以生长。

If the performance is critical, you can use a 2D-array, and implement a reallocation algorithm (e.g. doubling) so that it can grow.

不羁少年 2024-08-28 09:01:40

来自 Google 的 HashBasedTable 类 < href="http://code.google.com/p/guava-libraries/wiki/NewCollectionTypesExplained#Table" rel="nofollow">Guava 库可以执行此操作。如果行需要按排序顺序,还可以使用 TreeBasedTable。

HashBasedTable class from Google Guava libraries does this. There is also TreeBasedTable if rows need to be in sorted order.

橘虞初梦 2024-08-28 09:01:40

也许是 JQL 或 HSQL DB

Perhaps JQL or HSQL DB

空城之時有危險 2024-08-28 09:01:40

您可以简单地使用 List>。或者,甚至更简单的 Map> 将行号(第一个参数,Integer)映射到行(第二个参数,YourClass 对象列表, List)...并围绕该集合构建一个 DataModel 类,确保能够遍历每行中相同数量的元素(即使该行不包含所有元素)通过实现自定义迭代器返回 null 或空对象或类似的内容。

You could simply use List<List<YourClass>>. Or, even simpler Map<Integer, List<YourClass>> mapping the row number (first parameter, Integer) to a row (second parameter, list of YourClass objects, List<YourClass>)... and build a DataModel class around this collection ensuring the possibility of traversing trough the same number of elements in every row (even if the row does not have all the elements by just returning nulls or empty objects, or similar) by implementing the custom Iterator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文