Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 정렬된 배열의 더 작은 요소 계산

<시간/>

이 튜토리얼에서는 C++에서 정렬된 배열의 더 작은 요소를 세는 프로그램에 대해 논의할 것입니다.

여기서 우리는 숫자가 주어지고 우리의 임무는 주어진 숫자보다 작은 정렬된 배열에 있는 모든 요소를 ​​계산하는 것입니다.

예시

#include <bits/stdc++.h>
using namespace std;
int countSmaller(int arr[], int n, int x){
   return upper_bound(arr, arr+n, x) - arr;
}
int main(){
   int arr[] = { 10, 20, 30, 40, 50 };
   int n = sizeof(arr)/sizeof(arr[0]);
   cout << countSmaller(arr, n, 45) << endl;
   cout << countSmaller(arr, n, 55) << endl;
   cout << countSmaller(arr, n, 4) << endl;
   return 0;
}

출력

4
5
0