![JAR search and dependency download from the Maven repository](/logo.png)
net.openhft.chronicle.testframework.Permutation Maven / Gradle / Ivy
/*
*
* Copyright (c) 2006-2020, Speedment, Inc. All Rights Reserved.
*
* 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.
*/
package net.openhft.chronicle.testframework;
import net.openhft.chronicle.testframework.internal.PermutationUtil;
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
import java.util.List;
import java.util.stream.Stream;
import static java.util.Objects.requireNonNull;
/**
* General Permutation support from
* http://minborgsjavapot.blogspot.com/2015/07/java-8-master-permutations.html
*
* @author Per Minborg
*/
public final class Permutation {
// Suppresses default constructor, ensuring non-instantiability.
private Permutation() {
}
/**
* Returns the factorial (n!) for the given {@code n} value.
*
* @param n parameter
* @return the factorial (n!) for the given {@code n} value
*/
public static long factorial(final int n) {
return PermutationUtil.factorial(n);
}
/**
* Generates a stream of all possible permutations for the given {@code items}.
*
* This method is an overload of {@link #of(Collection)} that accepts an array instead of
* a collection.
*
* @param items Array of items to create permutations for
* @param Type of the elements
* @return Stream containing all permutations of the given {@code items}
* @throws NullPointerException if {@code items} is null
*/
public static List permutation(final long no, @NotNull final List items) {
// Check if the permutation number is negative and throw an exception if it is
if (no < 0) {
throw new IllegalArgumentException("no is negative: " + no);
}
// Check if the provided items list is null
requireNonNull(items, "items must not be null");
// Utilize PermutationUtil to compute the permutation and return the result
return PermutationUtil.permutation(no, items);
}
/**
* Creates and returns a Stream of all permutations of the provided {@code items} array.
*
* Note that the number of permutations increases very rapidly as the length of
* the provided {@code items} array increases.
*
* @param items to create permutations for
* @param type of the elements
* @return a Stream of all permutations of the provided {@code items} array
* @throws NullPointerException if the provided {@code items} array is {@code null}.
*/
@SafeVarargs
@SuppressWarnings("varargs")
public static Stream> of(@NotNull final T... items) {
requireNonNull(items);
return PermutationUtil.of(items);
}
/**
* Creates and returns a Stream of all permutations of the provided {@code items} list.
*
* This method generates a stream that contains all possible arrangements of the elements
* within the provided {@code items} list.
*
* Note that the number of permutations increases very rapidly as the length of
* the provided {@code items} list increases, so use with caution with large lists.
*
* @param items List of items to create permutations for
* @param Type of the elements
* @return a Stream containing all permutations of the provided {@code items} list
* @throws NullPointerException if the provided {@code items} list is {@code null}
* @throws IllegalArgumentException if the provided permutation number is negative
*/
public static Stream> of(@NotNull final Collection items) {
requireNonNull(items, "items must not be null");
return PermutationUtil.of(items);
}
/**
* Creates and returns a Stream of all permutations of the provided {@code items} stream.
*
* This method generates a stream that contains all possible arrangements of the elements
* within the provided {@code items} stream.
*
* Note that the number of permutations increases very rapidly as the length of
* the provided {@code items} stream increases, so use with caution with large streams.
*
* It is unspecified if the method lazily consumes the provided stream before providing
* the result or not.
*
* @param items Stream of items to create permutations for; must not be {@code null}
* @param Type of the elements
* @return a Stream containing all permutations of the provided {@code items} stream
* @throws NullPointerException if the provided {@code items} stream is {@code null}
*/
public static Stream> of(@NotNull final Stream items) {
return PermutationUtil.of(items);
}
}