摘要: package text.algorithm;/** * 选择排序 * O(n^2);空间复杂度O(1); */public class SelectionSort { public static void selectionSort(int[] a) { for (int i = 0; i < a 阅读全文
posted @ 2019-04-11 22:41 MisMe 阅读(223) 评论(0) 推荐(0)
摘要: sqlserver语法: select sum(cast(score as int)) as score from 表名; 注意:int是整型,在实际操作中根据自己需要的类型转换。 阅读全文
posted @ 2019-04-11 16:46 MisMe 阅读(6991) 评论(0) 推荐(0)