Android 集合(先进先出)
我有一个问题,我需要在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LinkedList
具有所有需要的方法,使您能够将项目添加到列表的前面或末尾。您可以使用clear()
删除所有内容。LinkedList
has all needed methods enabling you to add item to front or end of list. You can remove all withclear()
.