第10章 泛型算法

大多數(shù)算法定義在algorithm中讨韭。標(biāo)準(zhǔn)庫(kù)還在頭文件numeric中定義了一組數(shù)值泛型算法

練習(xí)10.1:頭文件algorithm中定義了一個(gè)名為count的函數(shù)首装,它類似find,接受一對(duì)迭代器和一個(gè)值作為參數(shù)漩仙。count返回給定值在序列中出現(xiàn)的次數(shù)掩宜。編寫(xiě)程序,讀取int序列存入vector中忧便,打印有多少個(gè)元素的值等于給定值,

#include <iostream>
#include <algorithm>
#include <vector>

using namespace std;

int main()
{
    vector<int> nums = {123,456,789,123,456,789,1};
    cout << count(nums.cbegin(), nums.cend(), 123) << endl;

    return 0;
}

練習(xí)10.3:用accumulate求一個(gè)vector<int>中的元素之和

#include <iostream>
#include <vector>
#include <numeric>

using namespace std;

int main()
{
    vector<int> nums = {1,2,3,4,5,6};
    cout << accumulate(nums.cbegin(), nums.cend(), 0);
    return 0;
}

練習(xí)10.9:實(shí)現(xiàn)你自己的elimDups帽借。測(cè)試你的程序茬腿,分別在讀取輸入后、調(diào)用unique后以及調(diào)用erase后打印vector的內(nèi)容宜雀。

void elimDups(vector<string> & words)
{
    sort(words.begin(), words.end());
    auto end_unique = unique(words.begin(), words.end());
    words.erase(end_unique, words.end());
}

練習(xí)10.11:編寫(xiě)程序,使用stable_sort和isShorter將傳遞給你的elimDups版本的vector排序握础。打印vector的內(nèi)容辐董,驗(yàn)證你程序的正確性

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
bool isShorter(const string &s1, const string &s2)
{
    return s1.size() < s2.size();
}
void elimDups(vector<string> & words);
int main()
{
    vector<string> words = {"the", "quick", "red", "fox", "jumps", "over",
                            "the", "slow", "red", "turtle"};
    elimDups(words);
    stable_sort(words.begin(), words.end(), isShorter);
    for (auto i : words)
        cout << i << " ";
    
    return 0;
}

void elimDups(vector<string> & words)
{
    sort(words.begin(), words.end());
    auto end_unique = unique(words.begin(), words.end());
    words.erase(end_unique, words.end());
}

練習(xí)10.13:標(biāo)準(zhǔn)庫(kù)定義了名為partition的算法,它接受一個(gè)謂詞禀综,對(duì)容器內(nèi)容進(jìn)行劃分简烘,使得謂詞為true的值會(huì)排在容器的前半部分,而未日次false的值會(huì)在后半部分定枷。算法返回一個(gè)迭代器指向最后一個(gè)使謂詞位true的元素之后的位置孤澎。編寫(xiě)一個(gè)函數(shù),接受string欠窒,返回bool覆旭,指出string是否有5個(gè)或更多字符。使用此函數(shù)劃分words打印長(zhǎng)度大于等于5的元素,

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>

using namespace std;

bool compareWords(const string &);

int main()
{
    vector<string> words = {"the", "quick", "red", "fox", "jumps", "over",
                            "the", "slow", "red", "turtle"};
    auto end = partition(words.begin(), words.end(), compareWords);
    for (auto i = words.begin(); i != end; ++i)
    {
        cout << *i << " ";
    }

    return 0;
}

bool compareWords(const string & words)
{
    return words.size() > 4;
}

lambda

lambda表達(dá)式形式:
[capture list] (parameter list) -> return type { function body}

  • 捕獲列表只用于局部非靜態(tài)變量型将。
  • 可以直接使用局部靜態(tài)變量和外部變量

練習(xí)10.14:編寫(xiě)一個(gè)lambda寂祥,接受兩個(gè)int,返回他們的和七兜。

#include <iostream>

using namespace std;
int main()
{
    int a = 5, b = 4;
    auto f = [](const int a, const int b) {return a + b;};
    cout << f(a, b) << endl;
}

練習(xí)10.15:編寫(xiě)一個(gè)lambda丸凭,捕獲它所在函數(shù)的int,并接受一個(gè)int參數(shù)腕铸。lambda應(yīng)該返回捕獲的int和int參數(shù)的和惜犀。

#include <iostream>

using namespace std;
int main()
{
    int a = 5, b = 4;
    auto f = [a](const int b) {return a + b;};
    cout << f(b) << endl;
}

從寫(xiě)biggies用partition代替find_if

void biggies(vector<string> &words, vector<string>::size_type sz)
{
    elimDups(words);
    stable_sort(words.begin(), words.end(),
                        [](const string &a, const string &b)
                            { return a.size() < b.size();});
    auto wz = partition(words.begin(), words.end(),
                            [sz](string &a)
                                { return a.size() < sz;});
    for_each( wz, words.end(),
                [](const string &a)
                    {cout << a << " ";});
    cout << endl;
}

在創(chuàng)建lambda的時(shí)候捕獲列表就保存了捕獲的值
修改捕獲列表的值必須使用mutable
auto f = [&a] () mutable {return ++a;};
返回其他類型使用尾置返回類型

可以使用bind代替lambda
引用 ref bind(print, ref(os), _1, ' ')
placeholders命名空間
using namespace std::placeholders;

練習(xí)10.22:重寫(xiě)統(tǒng)計(jì)長(zhǎng)度小于等于5的單詞數(shù)量的程序。使用函數(shù)代替lambda狠裹;

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <functional>

using namespace std;
using namespace std::placeholders;

void biggies(vector<string> &words, vector<string>::size_type sz);
void elimDups(vector<string> &words);
bool check6(const string &a, string::size_type sz);  //bind

int main()
{
    vector<string> words = {"the", "quick", "red", "fox", "jumps", "over",
                            "the", "slow", "red", "turtle"};
    biggies(words, 5);
}

void elimDups(vector<string> &words)
{
    sort(words.begin(), words.end());
    auto no_unique = unique(words.begin(), words.end());
    words.erase(no_unique, words.end());
}

void biggies(vector<string> &words, vector<string>::size_type sz)
{
    elimDups(words);
    stable_sort(words.begin(), words.end(),
                        [](const string &a, const string &b)
                            { return a.size() < b.size();});
    auto wz = find_if(words.begin(), words.end(), 
                        bind(check6, _1, sz));
    for_each(words.begin(), wz,
                [](const string &a)
                    {cout << a << " ";});
    cout << endl;
}

bool check6(const string &a, string::size_type sz)
{
    return a.size() > sz;
}

練習(xí)10.23:bind接受幾個(gè)參數(shù)虽界?
auto newCallable = bind(callable, arg_list);


image.png

練習(xí)10.26:解釋三種插入迭代器的不同之處

  • back_inserter:創(chuàng)建使用push_back的迭代器
  • front_inserter創(chuàng)建一個(gè)使用push_front的迭代器
  • inserter:創(chuàng)建一個(gè)使用insert的迭代器。此函數(shù)接受第二個(gè)參數(shù)酪耳,這個(gè)參數(shù)必須是一個(gè)指向給定容器的迭代器浓恳。元素將被插入到給定迭代器所表示的元素之前。

練習(xí)10.27:使用unique_copy函數(shù)將不重復(fù)的字母copy到一個(gè)初始化為空的list中

#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
#include <string>
#include <list>

using namespace std;

int main()
{
    vector<string> words = {"the", "quick", "red", "fox", "jumps", "over",
                        "the", "slow", "red", "turtle"};
    list<string> wwww;
    sort(words.begin(), words.end());
    unique_copy(words.cbegin(), words.cend(), inserter(wwww, wwww.begin()));
    for (auto i : words)
        cout << i << " ";
    cout << endl;
    for (auto i : wwww)
        cout << i << " ";
    cout << endl;

    return 0;
}

練習(xí)10.28:一個(gè)vector中保存1-9用三種迭代器copy到三種不同的容器


練習(xí)10.29:編寫(xiě)程序碗暗,使用流迭代器讀取一個(gè)文本文件颈将,存入一個(gè)vector中的string里

#include <iostream>
#include <vector>
#include <iterator>
#include <fstream>
#include <string>

using namespace std;

int main()
{
    ifstream in("1.txt");
    istream_iterator<string> str_it(in);
    istream_iterator<string> eof;
    vector<string> str(str_it, eof);

    ostream_iterator<string> out_iter(cout, " ");
    copy(str.cbegin(), str.cend(), out_iter);
    cout << endl;

    return 0;
}

練習(xí)10.30:使用流迭代器、sort和copy從標(biāo)準(zhǔn)輸入讀取一個(gè)整數(shù)序列言疗,將其排序晴圾,并將結(jié)構(gòu)寫(xiě)到標(biāo)準(zhǔn)輸出

#include <iostream>
#include <vector>
#include <iterator>
#include <string>
#include <algorithm>

using namespace std;

int main()
{
    istream_iterator<int> in_iter(cin);
    istream_iterator<int> eof;
    vector<int> nums(in_iter, eof);
    sort(nums.begin(), nums.end());
    ostream_iterator<int> out_iter(cout, " ");
    copy(nums.cbegin(), nums.cend(), out_iter);

    return 0;
}

練習(xí)10.34:使用reverse_iterator逆序打印一個(gè)vector

#include <iostream>
#include <vector>
#include <string>
#include <iterator>

using namespace std;
int main()
{
    vector<int> vec = {1,2,3,4,5,6,7,8};
    for (auto r_iter = vec.crbegin(); 
                r_iter != vec.crend();
                ++r_iter)
        cout << *r_iter << endl;
    return 0;
}

練習(xí)10.37:給定一個(gè)包含10個(gè)元素的vector,將3-7之間的元素逆序拷貝到list中

#include <iostream>
#include <list>
#include <vector>

using namespace std;
int main()
{
    vector<int> num = {1,2,3,4,5,6,7,8,9,0};
    list<int> nums(num.crbegin() + 3, num.crend() - 2);
    for (auto i : nums)
        cout << i << " ";
    cout << endl;

    return 0;
}

練習(xí)10.38:列出5個(gè)迭代器類別噪奄,以及每類迭代器所支持的操作死姚。
輸入迭代器:只讀,不寫(xiě)勤篮;單遍掃描都毒,只能遞增
輸出迭代器:只寫(xiě),不讀:?jiǎn)伪閽呙枧龅蓿荒苓f增
前向迭代器:可讀寫(xiě)账劲;多遍掃描,只能遞增
雙向迭代器:可讀寫(xiě)金抡;多遍掃描瀑焦,可遞增遞減
隨機(jī)訪問(wèn)迭代器:可讀寫(xiě),多遍掃描梗肝,支持全部迭代器運(yùn)算

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末榛瓮,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子巫击,更是在濱河造成了極大的恐慌禀晓,老刑警劉巖精续,帶你破解...
    沈念sama閱讀 206,602評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異匆绣,居然都是意外死亡驻右,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)崎淳,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)堪夭,“玉大人,你說(shuō)我怎么就攤上這事拣凹∩” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,878評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵嚣镜,是天一觀的道長(zhǎng)爬迟。 經(jīng)常有香客問(wèn)我,道長(zhǎng)菊匿,這世上最難降的妖魔是什么付呕? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,306評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮跌捆,結(jié)果婚禮上徽职,老公的妹妹穿的比我還像新娘。我一直安慰自己佩厚,他們只是感情好姆钉,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,330評(píng)論 5 373
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著抄瓦,像睡著了一般潮瓶。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上钙姊,一...
    開(kāi)封第一講書(shū)人閱讀 49,071評(píng)論 1 285
  • 那天毯辅,我揣著相機(jī)與錄音,去河邊找鬼煞额。 笑死悉罕,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的立镶。 我是一名探鬼主播,決...
    沈念sama閱讀 38,382評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼类早,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼媚媒!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起涩僻,我...
    開(kāi)封第一講書(shū)人閱讀 37,006評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤缭召,失蹤者是張志新(化名)和其女友劉穎栈顷,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體嵌巷,經(jīng)...
    沈念sama閱讀 43,512評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡萄凤,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,965評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了搪哪。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片靡努。...
    茶點(diǎn)故事閱讀 38,094評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖晓折,靈堂內(nèi)的尸體忽然破棺而出惑朦,到底是詐尸還是另有隱情,我是刑警寧澤漓概,帶...
    沈念sama閱讀 33,732評(píng)論 4 323
  • 正文 年R本政府宣布漾月,位于F島的核電站,受9級(jí)特大地震影響胃珍,放射性物質(zhì)發(fā)生泄漏梁肿。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,283評(píng)論 3 307
  • 文/蒙蒙 一觅彰、第九天 我趴在偏房一處隱蔽的房頂上張望吩蔑。 院中可真熱鬧,春花似錦缔莲、人聲如沸哥纫。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,286評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)蛀骇。三九已至,卻和暖如春读拆,著一層夾襖步出監(jiān)牢的瞬間擅憔,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,512評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工檐晕, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留暑诸,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,536評(píng)論 2 354
  • 正文 我出身青樓辟灰,卻偏偏與公主長(zhǎng)得像个榕,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子芥喇,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,828評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • 10.1概述 迭代器算法不會(huì)依賴容器西采,體現(xiàn)其泛型,但算法會(huì)依賴元素類型的操作继控,如排序算法sort默認(rèn)使用<運(yùn)算符械馆,...
    夜風(fēng)_3b8d閱讀 269評(píng)論 0 0
  • 10.1 概述 范型算法:實(shí)現(xiàn)了一些經(jīng)典算法的公共接口胖眷,可用于不同類型的元素、多種類型的容器霹崎、其他類型序列珊搀。 迭代...
    咸魚(yú)翻身ing閱讀 181評(píng)論 0 0
  • 10.1 概述 #include //大部分算法定義 #include <numeric> //數(shù)值泛型算法 ...
    龍遁流閱讀 571評(píng)論 0 1
  • #1.概述 #2.初始泛型算法只讀算法寫(xiě)容器元素的算法重排容器元素的算法 #3.定制操作向算法傳遞函數(shù)lambda...
    MrDecoder閱讀 687評(píng)論 0 0
  • 標(biāo)準(zhǔn)庫(kù)容器定義的操作集合驚人的小。標(biāo)準(zhǔn)庫(kù)并未給每個(gè)容器添加大量功能尾菇,而是提供了一組算法境析,這些算法中的大多數(shù)都獨(dú)立于...
    夢(mèng)中睡覺(jué)的巴子閱讀 561評(píng)論 0 0