摘要:
基础查询 查询全部 select * from 表 where 条件; 查询指定列 select name, age from student as别名: select name as zName, age as zAge from student as zStudent distinct去重: s 阅读全文
摘要:
1.冒泡排序:【O(n2)复杂度】 let arr = [100, 52, 42, 122, 11];// 冒泡排序,跟相邻的相比较function bubbleSort (arr) { let len = arr.length; while (len) { for (let i =0; i < l 阅读全文