All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mayabot.nlp.common.utils.CartesianList Maven / Gradle / Ivy

package com.mayabot.nlp.common.utils;

/*
 * Copyright (C) 2012 The Guava Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */

import java.util.*;


/**
 * @author Louis Wasserman
 */
final public class CartesianList extends AbstractList> implements RandomAccess {

    private transient final List> axes;
    private transient final int[] axesSizeProduct;

    public static  List> create(List> lists) {
        List> axesBuilder =
                new ArrayList>();
        for (List list : lists) {
            List copy = new ArrayList(list);
            if (copy.isEmpty()) {
                return Collections.emptyList();
            }
            axesBuilder.add(copy);
        }
        return new CartesianList(axesBuilder);
    }

    CartesianList(List> axes) {
        this.axes = axes;
        int[] axesSizeProduct = new int[axes.size() + 1];
        axesSizeProduct[axes.size()] = 1;
        try {
            for (int i = axes.size() - 1; i >= 0; i--) {
                axesSizeProduct[i] =
                        axesSizeProduct[i + 1] * axes.get(i).size();
            }
        } catch (ArithmeticException e) {
            throw new IllegalArgumentException(
                    "Cartesian product too large; must have size at most Integer.MAX_VALUE");
        }
        this.axesSizeProduct = axesSizeProduct;
    }

    private int getAxisIndexForProductIndex(int index, int axis) {
        return (index / axesSizeProduct[axis + 1]) % axes.get(axis).size();
    }

    @Override
    public List get(final int index) {
//        checkElementIndex(index, size());
        return new AbstractList() {

            @Override
            public int size() {
                return axes.size();
            }

            @Override
            public E get(int axis) {
//                checkElementIndex(axis, size());
                int axisIndex = getAxisIndexForProductIndex(index, axis);
                return axes.get(axis).get(axisIndex);
            }


            boolean isPartialView() {
                return true;
            }
        };
    }

    @Override
    public int size() {
        return axesSizeProduct[0];
    }

    @Override
    public boolean contains(Object o) {
        if (!(o instanceof List)) {
            return false;
        }
        List list = (List) o;
        if (list.size() != axes.size()) {
            return false;
        }
        ListIterator itr = list.listIterator();
        while (itr.hasNext()) {
            int index = itr.nextIndex();
            if (!axes.get(index).contains(itr.next())) {
                return false;
            }
        }
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy