51dev.com IT技术开发者社区

51dev.com 技术开发者社区

c++ 对符合条件的元素进行计数(count_if)

c++ 对符合条件的元素进行计数(count_if)

 #include<iostream>//cout#include<algorithm>//count_if#include<vector>//vectorusingnamespacestd;boolIsOdd(inti){return((i%2)!=0...

c++ 在指定长度的数组或者容器中,统计元素出现的次数(count)

c++ 在指定长度的数组或者容器中,统计元素出现的次数(count)

 #include<iostream>//cout#include<algorithm>//count#include<vector>//vectorusingnamespacestd;intmain(){//countingelementsinarra...

c++ 满足条件拷贝,容器扩容(copy_if)

c++ 满足条件拷贝,容器扩容(copy_if)

 #include<iostream>//cout#include<algorithm>//copy_if,distance#include<vector>//vectorusingnamespacestd;intmain(){vector<int...

c++ 指定长度容器元素的拷贝(copy_n)

c++ 指定长度容器元素的拷贝(copy_n)

 #include<iostream>  //cout#include<algorithm>  //copy#include<vector>   //vectorusingnamesp...

c++ 指定长度容器元素的拷贝移动(copy_backward)

c++ 指定长度容器元素的拷贝移动(copy_backward)

 #include<iostream>//cout#include<algorithm>//copy_backward#include<vector>//vectorusingnamespacestd;intmain(){vector<int>...

c++ 数组元素拷贝到容器(copy)

c++ 数组元素拷贝到容器(copy)

 #include<iostream>//cout#include<algorithm>//copy#include<vector>//vectorusingnamespacestd;intmain(){intmyints[]={10,20,30,40,...

c++  匹配相邻元素相等的元素(adjacent_find)

c++ 匹配相邻元素相等的元素(adjacent_find)

 #include<iostream>//cout#include<algorithm>//adjacent_find#include<vector>//vectorusingnamespacestd;boolmyfunction(inti,intj){...

c++ 二分法查找(binary_search)

c++ 二分法查找(binary_search)

 #include<iostream>//cout#include<algorithm>//binary_search,sort#include<vector>//vectorusingnamespacestd;boolmyfunction(inti,i...

c++ 判断数组元素是否都是奇数(all_of)

c++ 判断数组元素是否都是奇数(all_of)

 #include<iostream>//std::cout#include<algorithm>//std::all_of#include<array>//std::arrayusingnamespacestd;intmain(){array<i...

c++ 判断数组元素是否有负数(any_of)

c++ 判断数组元素是否有负数(any_of)

 #include<iostream>//std::cout#include<algorithm>//std::any_of#include<array>//std::arrayusingnamespacestd;intmain(){array<i...

Ubuntu 下载

Ubuntu 下载

 http://releases.ubuntu.com/  ...

ubuntu 14.04 (desktop amd 64) 下载

ubuntu 14.04 (desktop amd 64) 下载

  http://cdimage.ubuntu.com/ubuntukylin/releases/14.04/release/  ...

ubuntu16.04 server(amd 64) 下载

ubuntu16.04 server(amd 64) 下载

  http://mirrors.aliyun.com/ubuntu-releases/16.04/  http://old-releases.ubuntu.com/releases/16.04.3/ ...

ubuntu 14.04(desktop amd 64) nginx 安装启动停止

ubuntu 14.04(desktop amd 64) nginx 安装启动停止

sudoapt-getinstallnginx 关闭:sudoservicenginxstop启动:sudonginx...

vim/vi中移动光标键会变成A,B,C,D的解决办法

vim/vi中移动光标键会变成A,B,C,D的解决办法

在某些情况下,vi/vim中的编辑会出现一些很不愉快的情况,比如在vi/vim中输入方向键有时被转化为ABCD,或者按个Enter键,却被转为为其他字母,恼人得很,该怎么办呢?方法如下(在命令行中执行):1.echo"setnocp">>~/.vimrc(千万要注意,是>>,...