83 C 常用查詢演算法 count

2021-10-08 12:01:14 字數 613 閱讀 3206

5.count

功能描述:統計元素個數

函式原型
count

(iterator beg,iterator end,value)

;//統計元素出現次數

//beg開始迭代器

//end結束迭代器

//value統計的元素

#include

using

namespace std;

#include

#include

//常用查詢演算法 count

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

void

test01()

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

class

person

bool

operator==(

const person& p)

else

} string m_name;

int m_age;};

void

test02()

intmain()

8 3 C語言函式的形參和實參

上乙個例程中在進行函式呼叫的時候,不需要任何引數傳遞,所以函式定義和呼叫時括號內都是空的,但是更多的時候我們需要在主調函式和被呼叫函式之間傳遞引數。在呼叫乙個有引數的函式時,函式名後邊括號中的引數叫做實際引數,簡稱實參。而被呼叫的函式在進行定義時,括號裡的引數叫做形式引數,簡稱形參。我們用個簡單程式...

8 3《C 程式設計》字串和指標 函式和指標

兩種方式存放字串 1 用字元陣列存放乙個字串 char string i love china printf s n string 2 用字串指標指向乙個字串。char string i love china printf s n string 等價於char string string i lov...

C 常用查詢演算法

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