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

นับองค์ประกอบทั้งหมดในอาร์เรย์ที่ปรากฏอย่างน้อย K ครั้งหลังจากการเกิดขึ้นครั้งแรกใน C++


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมเพื่อค้นหาจำนวนองค์ประกอบในอาร์เรย์ที่ปรากฏขึ้นอย่างน้อย K ครั้งหลังจากการเกิดขึ้นครั้งแรก

สำหรับสิ่งนี้ เราจะได้รับอาร์เรย์จำนวนเต็มและค่า k งานของเราคือนับองค์ประกอบทั้งหมดที่เกิดขึ้น k ครั้งระหว่างองค์ประกอบหลังจากองค์ประกอบที่พิจารณา

ตัวอย่าง

#include <iostream>
#include <map>
using namespace std;
//returning the count of elements
int calc_count(int n, int arr[], int k){
   int cnt, ans = 0;
   //avoiding duplicates
   map<int, bool> hash;
   for (int i = 0; i < n; i++) {
      cnt = 0;
      if (hash[arr[i]] == true)
         continue;
      hash[arr[i]] = true;
      for (int j = i + 1; j < n; j++) {
         if (arr[j] == arr[i])
            cnt++;
         //if k elements are present
         if (cnt >= k)
            break;
      }
      if (cnt >= k)
         ans++;
   }
   return ans;
}
int main(){
   int arr[] = { 1, 2, 1, 3 };
   int n = sizeof(arr) / sizeof(arr[0]);
   int k = 1;
   cout << calc_count(n, arr, k);
   return 0;
}

ผลลัพธ์

1