Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,003 questions

51,950 answers

573 users

How to split an ArrayList into evenly sized chunks in Java

1 Answer

0 votes
import java.util.ArrayList;
import java.util.List;
 
public class Main {
    public static List<List<Integer>> split(List<Integer> lst, int chunk) {
        List<List<Integer>> result = new ArrayList<>();
         
        for (int i = 0; i < lst.size(); i += chunk) {
            result.add(lst.subList(i, Math.min(i + chunk, lst.size())));
        }
         
        return result;
    }
 
    public static void main(String[] args) {
        List<Integer> aList = new ArrayList<>();
         
        for (int i = 0; i < 32; i++) {
            aList.add(i);
        }
 
        System.out.println(split(aList, 5));
    }
}
 
 
 
/*
run:
 
[[0, 1, 2, 3, 4], [5, 6, 7, 8, 9], [10, 11, 12, 13, 14], [15, 16, 17, 18, 19], [20, 21, 22, 23, 24], [25, 26, 27, 28, 29], [30, 31]]
  
*/

 



answered Nov 12, 2024 by avibootz
edited Nov 12, 2024 by avibootz

Related questions

1 answer 102 views
2 answers 123 views
1 answer 99 views
1 answer 107 views
1 answer 108 views
1 answer 102 views
1 answer 91 views
...