84 C 常用查詢演算法 count if

2021-10-08 12:01:14 字數 689 閱讀 1115

6.count_if

功能描述:按條件統計元素個數

函式原型
cout_if

(iterator beg,iterator end,_pred)

;//按條件統計元素出現次數

//beg開始迭代器

//end結束迭代器

//_pred謂詞

#include

using

namespace std;

#include

#include

//常用查詢演算法 count_if

//1.統計內建資料型別

class

great20};

void

test01()

class

person

bool

operator==(

const person& p)

else

} string m_name;

int m_age;};

class

agegreater20};

//2.統計自定義資料型別

void

test02()

intmain()

陣列賦值給指標 8 4 C語言通過指標引用字串

01字串的引用方式 1 在c程式中,字串是存放在字元陣列中的。2 用字元陣列存放乙個字串,可以通過陣列名和下標引用字串中的乙個字元,也可以通過陣列名和格式宣告 s輸出該字串。3 用字元指標變數指向乙個字串常量,通過字元指標變數引用字串常量。4 通過字元陣列名或字元指標變數可以輸出乙個字串,而對乙個數...

C 常用查詢演算法

find 查詢元素 find if 按條件查詢元素 adjacent find 查詢相鄰重複元素 binary search 二分查詢演算法 count 統計元素個數 count if 按條件統計元素個數 1 find 查詢指定元素,返回找到的指定元素的迭代器,找不到則返回結束迭代器 函式原型 fi...

c 常用查詢演算法

演算法簡介 find 查詢元素 find if 按條件查詢元素 adjacent find 查詢相鄰重複元素 binary search 二分查詢法 count 統計元素個數 count if 按條件統計元素個數 find 功能描述 查詢指定元素,找到返回指定元素的迭代器,找不到返回結束迭代器end...