logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

STL_算法_旋转(rotate、rotate_copy)

C++ Primer 学习中。。。 简单记录下我的学习过程 (代码为主)//所有容器适用rotate(b,m,e)       //以m-b为单位,向前移动(旋转)rotate_copy(b,m,e,b2)/**------http://blog.csdn.net/u010579068------**/#in

STL_算法_查找算法(find、find_if)

C++ Primer 学习中。。。 简单记录下我的学习过程 (代码为主) find 、 find_if  /**********************线性查找O(n)find();find_if();注意:1.如果是已序区间,可以使用区间查找算法2.关联式容器(set,map)有等效的成员函数find();时间复杂度O(log(

STL_算法_逆转(reverse,reverse_copy)

C++ Primer 学习中。。。 简单记录下我的学习过程 (代码为主)//所有容器适用reverse(b,e)        //逆转区间数据reverse_copy(b,e,b2)/**------http://blog.csdn.net/u010579068------**/#include#includ

STL_算法_transform

C++ Primer 学习中。。。 简单记录下我的学习过程 (代码为主)所有容器适用transform(b1,e1,b2,op)      //把一个区间[b1,e1)内的数据经过(op)转化,放入第二个容器内                            //也就是复制+修改(变换)    当然b2可以等于b1trans

STL_算法_删除(remove、remove_if、remove_copy、remove_copy_if)

C++ Primer 学习中。。。 简单记录下我的学习过程 (代码为主)所有容器适用remove(b,e,v)           //[b,e) 删valueremove_if(b,e,p)        //[b,e) 删p条件remove_copy(b,e,r,v)    //[b,e) 删v,结果存入rremove_copy_if(b,e

The shortest problem(hdu5373+11的倍数)

The shortest problemProblem DescriptionIn this problem, we should solve an interesting game. At first, we have an integer n, then we begin to make some funny change. We sum up every digit of the n, th

到底了