C++ vector 泛型算法笔记

本贴最后更新于 2681 天前,其中的信息可能已经东海扬尘

泛型算法前三节

算法是操作迭代器,算法永远不会执行容器的操作,只会在容器中移动元素但永远不会直接添加和删除元素。

简单的算法复习:
count 查找vector里面的 数字多少次 返回
auto result = count(vec.begin(),vec.end(),8);

accumulate 求一个vector<int >中的元素之和
int sum = accumulate(vec.begin(),vec.end(),0);
第三个参数说明 加的东西是什么类型,如果vector里面的是string 对象,那么在第三个参数填上""就行了
在泛型算法中,参数很重要,需要明确知道参数的作用,还有重载的参数也好多,需要特别注意。
另外,算法的迭代器参数有可能不是同一个容器的。

特殊的迭代器,插入,流,反向

插入迭代器 insert iterator,可以向一个容器中插入数据

auto it = front_inserter(vec);//从前面插入,必须要支持push_front
auto it = back_inserter(vec); //从后面插入
auto it = inserter(vec,vec,begin());//从迭代器位置开始插入

*it = val ; //这样就插入了
等于如下操作:
it = vec.insert(it,vec.begin());//插入
it++; //递增it使它指向原来的元素

vector<string> vec{ "happynery","some","fox","school","parsongers for","fox","the","pasenger","sanyuan" };
	list<string> lis;
	sort(vec.begin(), vec.end());
	unique_copy(vec.begin(), vec.end(), back_inserter(lis));
	for (auto &m : lis)
		cout << m << endl;

流迭代器:绑定在输入或者输出流上的迭代器;

istream_iterator<int> in(cin); //从CIN读取int 
	istream_iterator<int> eof; //尾部迭代器
	vector<int>vec(in,eof); //从流迭代器初始化vector
	ostream_iterator<int> out_iter(cout, " ");
	for (auto &e : vec)
		*out_iter++ = e; // *和++运算符其实对输出流迭代器不做任何事情,这里是为了使其他的使用保持一致;
	cout << endl;
	可以通过调用 copy 来打印vec的内容;
	copy(vec.begin(),vec.end(),out_iter); 
	cout<<endl; 
	
// 使用流迭代器读取一个文本文件,存入一个vector中的string里
	ifstream in("shader.vs");
	if (!in) {
		cout << "读取文件失败" << endl;
	}
	istream_iterator<string> in_it(in);
	istream_iterator<string> eof;
	//高能预警,高级初始化
	vector<string> vecStr(in_it,eof);
	//版本2,循环push_back
	while(in_it !=  eof){
	  vecStr.push_back(*in_it++);
	}
	//华丽的分界线
	for (auto &elem : vecStr)
		cout << elem << endl;
		
//使用流迭代器,sort copy 从标准输入读取一个整数序列,将其排序,打印不重复的元素
	istream_iterator<int> in_it(cin);
	istream_iterator<int> eof;
	vector<int> vecInt(in_it,eof);
	sort(vecInt.begin(),vecInt.end());
	ostream_iterator<int> out(cout, "\n");
	unique_copy(vecInt.begin(), vecInt.end(), out); 
  
//自己看得懂
int  main(int argc,char**argv) {
	if (argc != 4) {
		cout << "please in put file name out filename :";
		return -1;
	}
	ifstream in(argv[1]);
	istream_iterator<int> in_it(in);
	istream_iterator<int> eof;
	ofstream out1(argv[2]);
	ofstream out2(argv[3]);
	ostream_iterator<int> out_it1(out1, "\n");
	ostream_iterator<int> out_it2(out2, " ");
	while (in_it != eof)
	{
		if (*in_it % 2 == 0)
		{
			*out_it1++ = *in_it++;
		}
		else
		{
			*out_it2++ = *in_it++;
		}
	}
	system("pause");
    return 0;
}

反向迭代器:向后移动的迭代器;
移动迭代器:专门移动迭代器的迭代器;

#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>
#include <list>
#include <deque>
#include <forward_list>
#include <stack>
#include <algorithm>
#include <functional>
using namespace std;
void elimDups(vector<string> &words) {
	//按字典排序
	sort(words.begin(), words.end());
	//unique 重排输入范围,使得每个单词只出现一次
	//排列在范围的前部,返回指向不重复区域之后的一个位置的迭代器
	auto end_unique = unique(words.begin(), words.end());
	//使用向量操作来删除重复的单词
	words.erase(end_unique, words.end());
}
bool compare(const string &str1, const string &str2) { return str1.size() > str2.size(); }
bool bigsize(const string &str1, string::size_type sz) {
	return str1.size() >= sz;
}
string make_plural(size_t ctr, const string &word, const string &ending) {
	return (ctr > 1) ? word + ending : word;
}
void biggise(vector<string> &words, vector<string>::size_type sz) {
	elimDups(words);
	stable_sort(words.begin(), words.end(), compare);
	auto wc = find_if(words.begin(), words.end(),bind(bigsize,std::placeholders::_1,sz));
	auto count = words.end() - wc;
	cout << count << " " << make_plural(count, "word", "s")
		<< "of length" << sz << "or longer" << endl;
	for_each(wc, words.end(),
		[](const string &s) {cout << s << " "; });
		cout << endl;
}
int  main() {

	vector<string> vec{ "happynery","some","fox","school","parsongers for","fox","the","pasenger","sanyuan" };
	biggise(vec,5);
	system("pause");
    return 0;
}
  • C++

    C++ 是在 C 语言的基础上开发的一种通用编程语言,应用广泛。C++ 支持多种编程范式,面向对象编程、泛型编程和过程化编程。

    107 引用 • 153 回帖
  • 基础概念
    1 引用

相关帖子

欢迎来到这里!

我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。

注册 关于
请输入回帖内容 ...

推荐标签 标签

  • AngularJS

    AngularJS 诞生于 2009 年,由 Misko Hevery 等人创建,后为 Google 所收购。是一款优秀的前端 JS 框架,已经被用于 Google 的多款产品当中。AngularJS 有着诸多特性,最为核心的是:MVC、模块化、自动化双向数据绑定、语义化标签、依赖注入等。2.0 版本后已经改名为 Angular。

    12 引用 • 50 回帖 • 483 关注
  • Rust

    Rust 是一门赋予每个人构建可靠且高效软件能力的语言。Rust 由 Mozilla 开发,最早发布于 2014 年 9 月。

    58 引用 • 22 回帖
  • BND

    BND(Baidu Netdisk Downloader)是一款图形界面的百度网盘不限速下载器,支持 Windows、Linux 和 Mac,详细介绍请看这里

    107 引用 • 1281 回帖 • 34 关注
  • Ruby

    Ruby 是一种开源的面向对象程序设计的服务器端脚本语言,在 20 世纪 90 年代中期由日本的松本行弘(まつもとゆきひろ/Yukihiro Matsumoto)设计并开发。在 Ruby 社区,松本也被称为马茨(Matz)。

    7 引用 • 31 回帖 • 216 关注
  • Firefox

    Mozilla Firefox 中文俗称“火狐”(正式缩写为 Fx 或 fx,非正式缩写为 FF),是一个开源的网页浏览器,使用 Gecko 排版引擎,支持多种操作系统,如 Windows、OSX 及 Linux 等。

    8 引用 • 30 回帖 • 410 关注
  • 开源

    Open Source, Open Mind, Open Sight, Open Future!

    407 引用 • 3578 回帖
  • Notion

    Notion - The all-in-one workspace for your notes, tasks, wikis, and databases.

    7 引用 • 40 回帖
  • ngrok

    ngrok 是一个反向代理,通过在公共的端点和本地运行的 Web 服务器之间建立一个安全的通道。

    7 引用 • 63 回帖 • 626 关注
  • IDEA

    IDEA 全称 IntelliJ IDEA,是一款 Java 语言开发的集成环境,在业界被公认为最好的 Java 开发工具之一。IDEA 是 JetBrains 公司的产品,这家公司总部位于捷克共和国的首都布拉格,开发人员以严谨著称的东欧程序员为主。

    181 引用 • 400 回帖
  • Tomcat

    Tomcat 最早是由 Sun Microsystems 开发的一个 Servlet 容器,在 1999 年被捐献给 ASF(Apache Software Foundation),隶属于 Jakarta 项目,现在已经独立为一个顶级项目。Tomcat 主要实现了 JavaEE 中的 Servlet、JSP 规范,同时也提供 HTTP 服务,是市场上非常流行的 Java Web 容器。

    162 引用 • 529 回帖 • 1 关注
  • JRebel

    JRebel 是一款 Java 虚拟机插件,它使得 Java 程序员能在不进行重部署的情况下,即时看到代码的改变对一个应用程序带来的影响。

    26 引用 • 78 回帖 • 672 关注
  • 星云链

    星云链是一个开源公链,业内简单的将其称为区块链上的谷歌。其实它不仅仅是区块链搜索引擎,一个公链的所有功能,它基本都有,比如你可以用它来开发部署你的去中心化的 APP,你可以在上面编写智能合约,发送交易等等。3 分钟快速接入星云链 (NAS) 测试网

    3 引用 • 16 回帖 • 6 关注
  • 导航

    各种网址链接、内容导航。

    42 引用 • 175 回帖
  • etcd

    etcd 是一个分布式、高可用的 key-value 数据存储,专门用于在分布式系统中保存关键数据。

    5 引用 • 26 回帖 • 528 关注
  • GitLab

    GitLab 是利用 Ruby 一个开源的版本管理系统,实现一个自托管的 Git 项目仓库,可通过 Web 界面操作公开或私有项目。

    46 引用 • 72 回帖
  • Mobi.css

    Mobi.css is a lightweight, flexible CSS framework that focus on mobile.

    1 引用 • 6 回帖 • 745 关注
  • DevOps

    DevOps(Development 和 Operations 的组合词)是一组过程、方法与系统的统称,用于促进开发(应用程序/软件工程)、技术运营和质量保障(QA)部门之间的沟通、协作与整合。

    51 引用 • 25 回帖
  • 人工智能

    人工智能(Artificial Intelligence)是研究、开发用于模拟、延伸和扩展人的智能的理论、方法、技术及应用系统的一门技术科学。

    135 引用 • 190 回帖
  • PostgreSQL

    PostgreSQL 是一款功能强大的企业级数据库系统,在 BSD 开源许可证下发布。

    22 引用 • 22 回帖 • 2 关注
  • WebClipper

    Web Clipper 是一款浏览器剪藏扩展,它可以帮助你把网页内容剪藏到本地。

    3 引用 • 9 回帖 • 4 关注
  • RIP

    愿逝者安息!

    8 引用 • 92 回帖 • 363 关注
  • NGINX

    NGINX 是一个高性能的 HTTP 和反向代理服务器,也是一个 IMAP/POP3/SMTP 代理服务器。 NGINX 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,第一个公开版本 0.1.0 发布于 2004 年 10 月 4 日。

    313 引用 • 547 回帖
  • 安装

    你若安好,便是晴天。

    132 引用 • 1184 回帖 • 1 关注
  • InfluxDB

    InfluxDB 是一个开源的没有外部依赖的时间序列数据库。适用于记录度量,事件及实时分析。

    2 引用 • 76 关注
  • 域名

    域名(Domain Name),简称域名、网域,是由一串用点分隔的名字组成的 Internet 上某一台计算机或计算机组的名称,用于在数据传输时标识计算机的电子方位(有时也指地理位置)。

    43 引用 • 208 回帖
  • 负能量

    上帝为你关上了一扇门,然后就去睡觉了....努力不一定能成功,但不努力一定很轻松 (° ー °〃)

    88 引用 • 1235 回帖 • 410 关注
  • 996
    13 引用 • 200 回帖 • 11 关注