1 Star 0 Fork 3

uss-enterprise/深入应用C++11:代码优化与工程级应用 的实践代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
7-6.cpp 447 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <iostream>
#include <algorithm>
#include <vector>
int main(void)
{
std::vector<int> foo = {25, 15, 5, -5, -15};
std::vector<int > bar(foo.size());
auto it = std::copy_if(foo.begin(), foo.end(), bar.begin(), [](int i){ return !(i < 0); });
bar.resize(std::distance(bar.begin(), it)); //shrink container to new size
std::cout << "bar constains:";
for(int &x : bar) std::cout << " " << x;
std::cout << "\n";
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/uss-enterprise/c11_book_learned_code.git
[email protected]:uss-enterprise/c11_book_learned_code.git
uss-enterprise
c11_book_learned_code
深入应用C++11:代码优化与工程级应用 的实践代码
master

搜索帮助