摘要:
public class SelectSort{ public static void sort(int[] array ){ for(int i=0; i<array.length;i++){ int min=i; for(int j=i+1; j<array.length;j++){ if(ar 阅读全文
posted @ 2020-05-18 22:54
失落的帝国1030
阅读(76)
评论(0)
推荐(0)
摘要:
1.数据库创建与使用 CREATE DATABASE test; USE test; 2. 创建表 CREATE TABLE mytable{ id INT, PRIMARY KEY ('id') }; 3.修改表 ALTER TABLE mytable ADD * ; ALTER TABLE my 阅读全文
posted @ 2020-05-18 17:57
失落的帝国1030
阅读(39)
评论(0)
推荐(0)
摘要:
public class BubbleSort{ public static void sort (int[] array){ for(int i=1; i<array.length;i++){ for(int j=0; j<array.length-i;j++){ if(arr[j]<arr[j+ 阅读全文
posted @ 2020-05-18 17:02
失落的帝国1030
阅读(69)
评论(0)
推荐(0)

浙公网安备 33010602011771号