java List数据分片

将List数据分成指定份数

public class ListUtil {

    public static void main(String[] args) {
//        List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
        List<Integer> numbers = new ArrayList<>();

        List<List<Integer>> partition = partition(numbers, 3);
        partition.forEach(i->{
            System.out.println(i.toString());
        });


        List<Integer> integers = partition.get(2);
        System.out.println(integers.toString());
    }


    /**
     *
     * @Description 自定义List分片
     * @Author jianghuanxiang
     * @Date 2023/2/20 13:05
     * @param list:待分片数据
     * @param numSplits: 片数
     * @return: java.util.List<java.util.List<T>>
     **/
    public static <T> List<List<T>> partition(final List<T> list, final int numSplits) {
        if (list == null) {
            throw new NullPointerException("List must not be null");
        }
        if (numSplits <= 0) {
            throw new IllegalArgumentException("numSplits must be greater than 0");
        }
        return new ListUtil.Partition<>(list, numSplits);
    }

    private static class Partition<T> extends AbstractList<List<T>> {
        private final List<T> list;
        private final int size;


        private int getSize(final List<T> list, final int numSplits){
            int size = list.size();
            int chunkSize = (int) Math.ceil((double) size / numSplits);
            return chunkSize;
        }

        private Partition(final List<T> list, final int numSplits) {

            this.list = list;
            this.size = this.getSize(list,numSplits);
        }

        @Override
        public List<T> get(final int index) {
            final int listSize = size();
            if (index < 0) {
                throw new IndexOutOfBoundsException("Index " + index + " must not be negative");
            }
            if (index >= listSize) {
                throw new IndexOutOfBoundsException("Index " + index + " must be less than size " +
                        listSize);
            }
            final int start = index * size;
            final int end = Math.min(start + size, list.size());
            return list.subList(start, end);
        }

        @Override
        public int size() {
            return (int) Math.ceil((double) list.size() / (double) size);
        }

        @Override
        public boolean isEmpty() {
            return list.isEmpty();
        }
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值