摘要:
import java.util.Random; import java.util.Scanner; public class Case1 { public static void main(String[] args) { Random r=new Random(); int number=r.n 阅读全文
摘要:
1.常见的选择排序 1 public class Case { 2 3 public static void main(String[] args) { 4 int a[]=new int[] {5,4,27,1,9,8,3,12,-9}; 5 //查询外部总循环次数 6 for (int i = 阅读全文