首頁  >  文章  >  後端開發  >  找出出現奇數次數的數字的C/C++程序

找出出現奇數次數的數字的C/C++程序

WBOY
WBOY轉載
2023-08-30 16:45:071225瀏覽

找出出現奇數次數的數字的C/C++程序

一個C 程序,用於在給定的正整數數組中找到出現奇數次數的數字。在這個數組中,所有數字都出現偶數次。

Input: arr[] = {5, 7, 8, 8, 5, 8, 8, 7, 7}
Output: 7

Explanation

使用兩個循環,外部循環逐一遍歷所有元素,內部循環計算外部循環遍歷的元素出現的次數。

Example

#include <iostream>
using namespace std;
int Odd(int arr[], int n){
   for (int i = 0; i < n; i++) {
      int ctr = 0;
      for (int j = 0; j < n; j++) {
         if (arr[i] == arr[j])
            ctr++;
      }
      if (ctr % 2 != 0)
         return arr[i];
   }
   return -1;
}
int main() {
   int arr[] = {5, 7, 8, 8, 5, 8, 8, 7, 7};
   int n = 9;
   cout <<Odd(arr, n);
   return 0;
}

以上是找出出現奇數次數的數字的C/C++程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除