Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

นับจำนวน 1 และ 0 ในอาร์เรย์ไบนารีโดยใช้ STL ใน C++


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมที่จะนับจำนวน 1 และ 0 ในอาร์เรย์ไบนารีโดยใช้ STL ใน C++

สำหรับสิ่งนี้เราจะได้รับอาร์เรย์ งานของเราคือนับจำนวน 0 และ 1 ที่มีอยู่ในอาร์เรย์

ตัวอย่าง

#include <bits/stdc++.h>
using namespace std;
// checking if element is 1 or not
bool isOne(int i){
   if (i == 1)
      return true;
   else
      return false;
}
int main(){
   int a[] = { 1, 0, 0, 1, 0, 0, 1 };
   int n = sizeof(a) / sizeof(a[0]);
   int count_of_one = count_if(a, a + n, isOne);
   cout << "1's: " << count_of_one << endl;
   cout << "0's: " << (n - count_of_one) << endl;
   return 0;
}

ผลลัพธ์

1's: 3
0's: 4