Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.util.Collection;
import java.util.List;

import java.util.Iterator;
import java.util.ArrayList;

public class Main {
    public static <T> List<Collection<T>> splitCollection(Collection<T> col, int numLists)
            throws InstantiationException, IllegalAccessException {
        List<Collection<T>> lstReturn = new ArrayList<Collection<T>>();
        Iterator<T> iter = col.iterator();

        for (int c = 0; c < numLists; c++) {
            Collection<T> temp = col.getClass().newInstance();
            lstReturn.add(temp);
        }

        while (iter.hasNext()) {
            for (int collectionIndex = 0; collectionIndex < numLists; collectionIndex++) {
                if (iter.hasNext()) {
                    Collection<T> current = lstReturn.get(collectionIndex);
                    T value = iter.next();
                    current.add(value);
                }
            }
        }

        return lstReturn;
    }
}