function moveEnd(obj) {
obj.focus();
var len = obj.value.length;
if (document.selection) {
var sel = obj.createTextRange();
sel.moveStart('character', len);
sel.collapse();
sel.select();
}...
分类:
Web程序 时间:
2014-08-30 00:04:18
阅读次数:
192
一.创建maven工程 在eclipse的菜单栏选择File->New->Other->Maven->Maven Project 下一步后选择Create a simple project(skip archetype selection),如图 下一步后输入Group Id,Archive Id,Packaging后点击Finis...
分类:
Web程序 时间:
2014-08-27 13:12:38
阅读次数:
244
在对数据进行拟合,学习模型的过程中,会出现以下情况:1)high variance, overfitting.过拟合2)high bias, underfiiting.欠拟合过拟合出现的原因1)太多的特征。2)过少的训练数据。如何解决?1)减少特征数2)模型选择算法(model selection ...
分类:
其他好文 时间:
2014-08-26 19:13:56
阅读次数:
310
选择排序图解 选择排序(Selection sort)是一种简单直观的排序算法。它的工作原理如下。首先在未排序序列中找到最小(大)元素,存放到排序序列的起始位置,然后,再从剩余未排序元素中继续寻找最小(大)元素,然后放到已排序序列的末尾。以此类推,直到所有元素均排序完毕。选择排序...
分类:
其他好文 时间:
2014-08-25 03:24:44
阅读次数:
227
1,Selection SortSteps:from 0~n-1, select the minimum element[comparing n-1 times], swap it with the A[0].from 1~n-1,select the minimum element[compari...
分类:
其他好文 时间:
2014-08-21 22:39:14
阅读次数:
268
DoImagePickerControllerAn image picker controller with single selection and multiple selection. Support to select lots photos with panning gesture.这是一...
分类:
其他好文 时间:
2014-08-21 20:51:44
阅读次数:
232
1、Jquery方法blur()失去焦点2、选择文字后高亮::selection属性3、a.toString().replace(/^(\d)$/, "0$1") .($1指的就是符合你第一个括号里的正则的数据,如果a是1个数字,转换成2位数,前面以0补充)4、给div设置高的时候,如果设置为百分比...
分类:
其他好文 时间:
2014-08-20 17:54:32
阅读次数:
200
选择排序(Selection sort)是一种简单直观的排序算法。它的工作原理如下。首先在未排序序列中找到最小(大)元素,存放到排序序列的起始位置,然后,再从剩余未排序元素中继续寻找最小(大)元素,然后放到已排序序列的末尾。以此类推,直到所有元素均排序完毕。
选择排序的主要优点与数据移动有关。如果某个元素位于正确的最终位置上,则它不会被移动。选择排序每次交换一对元素,它们当中至少有一个将被移到其...
分类:
编程语言 时间:
2014-08-20 14:13:03
阅读次数:
269
Selection:selection is a trivial problem if the input numbers are sorted. If we use a sorting algorithm having O(nlgn) worst case running time, then t...
分类:
其他好文 时间:
2014-08-19 04:50:43
阅读次数:
200
从数组array中找出第k小的元素,即经典的“线性时间选择”问题...
分类:
其他好文 时间:
2014-08-17 21:26:12
阅读次数:
276