Android 集合(先进先出)

发布于 2024-12-04 03:45:44 字数 355 浏览 0 评论 0原文

我有一个问题,我需要在我的 Android 应用程序中使用一种集合类型。该集合应该在顶部插入项目,并且也会从顶部删除,但也会从中清除所有最底部的项目。

例如,如果我的集合中有以下内容。

1 | 2 | 3 | 4 | 5

我插入“6”。

1 | 2 | 3 | 4 | 5 | 6

我删除“6”,

Empty

插入“7”

7

,然后插入“8”

7 | 8

I have a problem where I need to use a type of collection in my android application. The collection should insert items at the top and will remove from the top too but also clear all the bottom most items from it.

For example, if I have following in the collection.

1 | 2 | 3 | 4 | 5

I insert "6".

1 | 2 | 3 | 4 | 5 | 6

I remove "6"

Empty

I insert "7"

7

And I insert "8"

7 | 8

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

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

发布评论

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

评论(1

陌路黄昏 2024-12-11 03:45:44

LinkedList 具有所有需要的方法,使您能够将项目添加到列表的前面或末尾。您可以使用 clear() 删除所有内容。

LinkedList has all needed methods enabling you to add item to front or end of list. You can remove all with clear().

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