c语言中count函数的用法
时间: 2023-09-16 07:07:56 浏览: 385
C语言fread函数用法
c语言中没有内置的count函数,可能是指STL中的count函数,或者是自定义的函数。
1. STL中的count函数:
count函数是C++标准库中的一个函数,可以用来统计元素在容器中出现的次数。其用法为:
```
#include <algorithm> //头文件
std::count(容器的起始地址, 容器的结束地址, 待统计的元素);
```
例如:
```
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
vector<int> v = {1, 2, 3, 2, 4, 2, 5};
int count = std::count(v.begin(), v.end(), 2);
cout << "2出现的次数为:" << count << endl; //输出:2出现的次数为:3
return 0;
}
```
2. 自定义的函数:
也可以自定义函数实现统计元素在数组中出现的次数。例如:
```
#include <stdio.h>
int count(int arr[], int len, int target)
{
int cnt = 0;
for (int i = 0; i < len; i++)
{
if (arr[i] == target)
cnt++;
}
return cnt;
}
int main()
{
int arr[] = {1, 2, 3, 2, 4, 2, 5};
int len = sizeof(arr) / sizeof(int);
int target = 2;
int cnt = count(arr, len, target);
printf("%d出现的次数为:%d\n", target, cnt); //输出:2出现的次数为:3
return 0;
}
```
阅读全文