vote up 4 vote down star
2

What's the simplest, most standard, and/or most efficient way to split a List into two sub-Lists in Java? It's OK to mutate the original List, so no copying should be necessary. The method signature could be

/** Split a list into two sublists. The original list will be modified to
 * have size i and will contain exactly the same elements at indices 0 
 * through i-1 as it had originally; the returned list will have size 
 * len-i (where len is the size of the original list before the call) 
 * and will have the same elements at indices 0 through len-(i+1) as 
 * the original list had at indices i through len-1.
 */
<T> List<T> split(List<T> list, int i);

[EDIT] List.subList returns a view on the original list, which becomes invalid if the original is modified. So split can't use subList unless it also dispenses with the original reference (or, as in Marc Novakowski's answer, uses subList but immediately copies the result).

flag

67% accept rate
Wouldn't "most efficient" depend on concrete type of the List? – Hemal Pandya Dec 19 '08 at 1:07
Your comment should start with "/**" since it's a method comment. – Steve Kuo Dec 19 '08 at 2:18
Hemal, probably. So give me the simplest and most standard. – Chris Conway Dec 19 '08 at 14:53
@Hemal: fortunately with subList() every list implementation can do what is fastest. – Joachim Sauer Dec 22 '08 at 15:47

6 Answers

vote up 8 vote down check

Quick semi-pseudo code:

List sub=one.subList(...);
List two=new XxxList(sub);
sub.clear(); // since sub is backed by one, this removes all sub-list items from one

That uses standard List implementation methods and avoids all the running around in loops. The clear() method is also going to use the internal removeRange() for most lists and be a heckuva lot more efficient.

link|flag
vote up 4 vote down

Getting the returned array is pretty easy using the subList method, but there's no easy way that I know of to remove a range of items from a List.

Here's what I have:

<T> List<T> split(List<T> list, int i) {
	List<T> x = new ArrayList<T>(list.subList(i, list.size()));
	// Remove items from end of original list
	while (list.size() > i) {
		list.remove(list.size() - 1);
	}
	return x;
}
link|flag
One clarification - I create a new ArrayList because the list returned by subList is backed by the original list, and since we're modifying it later it would mess up the returned list. – Marc Novakowski Dec 18 '08 at 22:41
Absolutely right. Thanks for pointing out the bugs in my (now deleted) attempt - that's what I get for posting half-asleep... – Dan Vinton Dec 18 '08 at 22:59
.subList(i, list.Size()).clear() should remove the items contained in the subList from the base List (as mentioned in the JavaDoc of subList). See my answer below for an example. – Joachim Sauer Dec 19 '08 at 13:47
vote up 3 vote down

Riffing on Marc's solution, this solution uses a for loop that saves some calls to list.size():

<T> List<T> split(List<T> list, int i) {
    List<T> x = new ArrayList<T>(list.subList(i, list.size()));
    // Remove items from end of original list
    for (int j=list.size()-1; j>i; --j)
        list.remove(j);
    return x;
}
link|flag
vote up 1 vote down
<T> List<T> split(List<T> list, int i) {
    List<T> upper = new ArrayList<T>();
    while (list.size() > i) {
        upper.add(list.remove(i));
    }
    return upper;
}
link|flag
vote up 1 vote down

Likewise cribbing off of Marc's list, we'll use List.removeAll() to remove the duplicate entries from the second list. Note that, strictly speaking, this only follows the specs if the original list contained no duplicate items: otherwise, the original list may be missing items.

<T> List<T> split(List<T> list, int i) {
        List<T> x = new ArrayList<T>(list.subList(i, list.size()));
        // Remove items from end of original list
        list.removeAll(x);
        return x;
}
link|flag
I think this solution fails in the case where elements that are .equals() appear in both partitions. – Brandon DuRette Dec 19 '08 at 6:59
vote up 1 vote down
<T> List<T> split(List<T> list, int i) {
   List<T> secondPart = list.sublist(i, list.size());
   List<T> returnValue = new ArrayList<T>(secondPart());
   secondPart.clear(),
   return returnValue;
}
link|flag
Nice way to clear out the end of the original List without using a for loop, +1 – Marc Novakowski Dec 19 '08 at 18:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.