Path: blob/master/src/demo/share/jfc/SwingSet2/Permuter.java
41149 views
/*1*2* Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.3*4* Redistribution and use in source and binary forms, with or without5* modification, are permitted provided that the following conditions6* are met:7*8* - Redistributions of source code must retain the above copyright9* notice, this list of conditions and the following disclaimer.10*11* - Redistributions in binary form must reproduce the above copyright12* notice, this list of conditions and the following disclaimer in the13* documentation and/or other materials provided with the distribution.14*15* - Neither the name of Oracle nor the names of its16* contributors may be used to endorse or promote products derived17* from this software without specific prior written permission.18*19* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS20* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,21* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR22* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR23* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,24* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,25* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR26* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF27* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING28* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS29* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.30*/31323334import java.util.Random;3536/**37* An object that implements a cheesy pseudorandom permutation of the integers38* from zero to some user-specified value. (The permutation is a linear39* function.)40*41* @author Josh Bloch42*/43class Permuter {44/**45* The size of the permutation.46*/47private int modulus;4849/**50* Nonnegative integer less than n that is relatively prime to m.51*/52private int multiplier;5354/**55* Pseudorandom nonnegative integer less than n.56*/57private int addend = 22;5859public Permuter(int n) {60if (n<0) {61throw new IllegalArgumentException();62}63modulus = n;64if (n==1) {65return;66}6768// Initialize the multiplier and offset69multiplier = (int) Math.sqrt(n);70while (gcd(multiplier, n) != 1) {71if (++multiplier == n) {72multiplier = 1;73}74}75}7677/**78* Returns the integer to which this permuter maps the specified integer.79* The specified integer must be between 0 and n-1, and the returned80* integer will be as well.81*/82public int map(int i) {83return (multiplier * i + addend) % modulus;84}8586/**87* Calculate GCD of a and b, which are assumed to be non-negative.88*/89private static int gcd(int a, int b) {90while(b != 0) {91int tmp = a % b;92a = b;93b = tmp;94}95return a;96}9798/**99* Simple test. Takes modulus on command line and prints out permutation.100*/101public static void main(String[] args) {102int modulus = Integer.parseInt(args[0]);103Permuter p = new Permuter(modulus);104for (int i=0; i<modulus; i++) {105System.out.print(p.map(i)+" ");106}107System.out.println();108}109}110111112