摘要: 使用var 定义变量还会提升变量声明,即使用var定义:function hh(){ console.log(a); var a = 'hello world';}hh() //undefined不使用var定义:function hh(){ console.log(a); a = 'hello w 阅读全文
posted @ 2016-11-01 17:46 林子lxl 阅读(536) 评论(0) 推荐(0) 编辑
摘要: //基数,随便选一个数组里面的数.一般情况下取素组中间的数字(这个基数决定了快速排序算法的优劣) var arr = [43,2,8,3,5,12,85,9,23]; //快速排序的函数 function quickSort(Array1){ if(Array1.length <= 1){ retu 阅读全文
posted @ 2016-11-01 15:02 林子lxl 阅读(174) 评论(0) 推荐(0) 编辑