Selection Sort选择排序The idea of the selection sort is to find the smallest element in the list and exchange it with theelement in the first position. Th...
分类:
其他好文 时间:
2014-09-25 19:44:07
阅读次数:
223
remove_copy原型:
std::remove_copy
template
OutputIterator remove_copy (InputIterator first, InputIterator last,
OutputIterator result, const T& val);
该函数是将范围[first,las...
分类:
其他好文 时间:
2014-09-25 14:05:20
阅读次数:
238
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 1 /** 2 ...
分类:
其他好文 时间:
2014-09-25 13:02:08
阅读次数:
204
reverse原型:
std::reverse
template
void reverse (BidirectionalIterator first, BidirectionalIterator last);反转范围内的元素。
行为类似于:
template
void reverse (BidirectionalIterator first, BidirectionalItera...
分类:
其他好文 时间:
2014-09-25 12:52:39
阅读次数:
169
replace原型:
std::replace
template
void replace (ForwardIterator first, ForwardIterator last,
const T& old_value, const T& new_value);
将范围内的某个值替换成一个新值。
行为类似于:
template ...
分类:
其他好文 时间:
2014-09-25 12:38:28
阅读次数:
326
rmove原型:
std::remove
template
ForwardIterator remove (ForwardIterator first, ForwardIterator last, const T& val);
查找的得到第一个元素的位置,然后从此位置开始遍历容器,将后面的元素依次前移,跳过和value相同值的元素,也就是说,所有和value相同...
分类:
其他好文 时间:
2014-09-25 10:43:28
阅读次数:
245
today, I write code for a day ,I'm very tired,but I am very happy .Although,some problem haunt me, today is a usually day for me .I will adhere every ...
分类:
其他好文 时间:
2014-09-25 01:23:57
阅读次数:
167
最近一段时间在看算法,发现实现链表有联众方法,本科的时候学习数据结构,对于链表来说,会先建立一个头结点,firstNode,而这个first结点本身是一个node,只不过值域为空,而next域则是指向随后的结点。而在Robert Sedgewick的算法书中,是另一种实现方法,first是一个指针....
分类:
其他好文 时间:
2014-09-24 20:00:37
阅读次数:
308
Implement strStr().
Returns a pointer to the first occurrence of needle in haystack,or null if needle is not part of haystack....
分类:
其他好文 时间:
2014-09-24 17:52:27
阅读次数:
159
简介 为表单添加验证 添加校验的方法: 1. first name 不能为null 2. Email address 不能为null 3. age 必须大于18岁 为了在用户提交的时候,能够校验这个表单,我们必须在Action register 中定义一个方法: validate method @O...
分类:
其他好文 时间:
2014-09-24 17:17:47
阅读次数:
236