java 用子列表替换列表
我有一个列表
ArrayList list = new ArrayList(Arrays.asList(1,2,3,4,5,3,4,2,4,5,3,10));
我还有另一个子列表
ArrayList sublist = new ArrayList(Arrays.asList(4,5,3));
我正在寻找要替换的功能 列表中的子列表
与另一个子列表,
ArrayList sublist = new ArrayList(Arrays.asList(100,100)));
因此在查找和替换之后,新列表应该变成:
list = (1,2,3,100,100,4,2,100,100,10);
我在java中找不到这个列表的任何api。
I have a list
ArrayList list = new ArrayList(Arrays.asList(1,2,3,4,5,3,4,2,4,5,3,10));
And I have another sublist
ArrayList sublist = new ArrayList(Arrays.asList(4,5,3));
I was looking around for a functionality to replace
the sublist inside list
with another sublist
ArrayList sublist = new ArrayList(Arrays.asList(100,100)));
so after the find and replace , the new list should become :
list = (1,2,3,100,100,4,2,100,100,10);
I could not find any api for this one in java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定是否存在任何 api 可以执行此操作,但您可以利用 Java 中的 List 接口。
如果你结合使用
包含全部(集合 c)
如果此列表包含指定集合的所有元素,则返回 true。
删除全部(集合c)
从此列表中删除指定集合中包含的所有元素(可选操作)。
和
addAll(int 索引, 集合 c)
将指定集合中的所有元素插入到此列表的指定位置(可选操作)。
我认为你可以轻松完成你需要的事情。
看看这里:
http://download.oracle.com/javase/6 /docs/api/java/util/List.html
Not sure if there exists any api for doing this or not, but what you could do is take advantage of the List interface in Java.
If you combine the use of
containsAll(Collection c)
Returns true if this list contains all of the elements of the specified collection.
removeAll(Collection c)
Removes from this list all of its elements that are contained in the specified collection (optional operation).
and
addAll(int index, Collection c)
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
I think you can easily accomplish what you need.
Take a look here:
http://download.oracle.com/javase/6/docs/api/java/util/List.html
如果您将子列表创建为
list
的 true 子列表,例如使用List#subList()
,然后(非结构性)更改为子列表
将是反映在列表
中。演示:http://ideone.com/ljvd0
Lists.newArrayList(...)
来自 谷歌番石榴。If you create the sublist as a true sublist of
list
, e.g. usingList#subList()
, then (non-structural) changes made tosublist
will be reflected inlist
.Demo: http://ideone.com/ljvd0
Lists.newArrayList(...)
comes from Google Guava.