📄 permutation.java
字号:
package crypt;public class Permutation { int[] shuffled; // shuffled sequence // The constructor of class Permutation creates a shuffled // sequence of the integers 0 ... (size-1). public Permutation(int size, F5Random random) { int i, randomIndex, tmp; shuffled = new int[size]; // To create the shuffled sequence, we initialise an array // with the integers 0 ... (size-1). for (i=0; i<size; i++) // initialise with 磗ize
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -