⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 permutation.java

📁 基于JPEG图像的数字密写方法 F5算法的JAVA程序
💻 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 + -