日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > c/c++ >内容正文

c/c++

金海佳学C++primer 练习9.4/9.5

發布時間:2023/12/8 c/c++ 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 金海佳学C++primer 练习9.4/9.5 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

給定區間查找值

Practice9.4

#include <iostream> #include <string> #include <vector> #include <algorithm> #include <list> #include <iterator> #include <cmath> #include <cstring> #include <forward_list> using namespace std;void print(vector<int> ivec) {for(auto i : ivec) {cout << i << " ";}cout << endl; }bool find_value(vector<int>::iterator b, vector<int>::iterator e, int value){// "it != e" !!!// [ )for(auto it = b; it != e; it++) {if(*it == value) {return true;}}return false; }int main() {vector<int> ivec = {0, 1, 3, 4, 5, 6, 7, 8};auto b = ivec.begin();auto e = ivec.begin();e++, e++, e++, e++;cout << "b -----> " << *b << endl;cout << "e -----> " << *e << endl;/* test1 */cout << find_value(b,e,3) << endl;/* test2 */cout << find_value(b,e,12) << endl; return 0; }

Output

b -----> 0 e -----> 5 1 0

Practice9.5

#include <iostream> #include <string> #include <vector> #include <algorithm> #include <list> #include <iterator> #include <cmath> #include <cstring> #include <forward_list> using namespace std;void print(vector<int> ivec) {for(auto i : ivec) {cout << i << " ";}cout << endl; }vector<int>::iterator find_value_2(vector<int>::iterator b, vector<int>::iterator e, int value){// "it != e" !!!// [ )for(auto it = b; it != e; it++) {if(*it == value) {return it;}}cout << "Find nothing" << endl;return b; }int main() {vector<int> ivec = {0, 1, 3, 4, 5, 6, 7, 8};auto b = ivec.begin();auto e = ivec.begin();e++, e++, e++, e++;cout << "b -----> " << *b << endl;cout << "e -----> " << *e << endl;/* test1 */cout << *(find_value_2(b,e,3)) << endl;/* test2 */cout << *(find_value_2(b,e,12)) << endl; return 0; }

Oupout

b -----> 0 e -----> 5 3 Find nothing 0

Keep on going never give up

總結

以上是生活随笔為你收集整理的金海佳学C++primer 练习9.4/9.5的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。