摘要:
1.实体类 public class DictTreePair implements Serializable { private static final long serialVersionUID = 1L; /** * 字典类型 */ @ApiModelProperty("字典类型") pri 阅读全文
摘要:
import java.util.Random; public class RandomPassword { public static void main(String[] args) { // int i =(int)(8+Math.random()*(20-8+1)); int i=8; Ra 阅读全文
摘要:
public class BubbleSort1 { /** *冒泡排序Java版:每次比较两个相邻的元素,将较大的元素交换至右(左)端 */ //冒泡排序基础版 public int [] A(int [] arr){ int temp; for (int i = 0; i < arr.lengt 阅读全文