Cプログラミング
 Computer >> コンピューター >  >> プログラミング >> Cプログラミング

複数回出現する配列要素?


ここで1つの問題が発生します。アレイが1つあります。私たちのタスクは、頻度が1を超える要素を見つけることです。要素が{1、5、2、5、3、1、5、2、7}であるとします。ここでは、1回が2回、5回が3回、2回が3回発生し、その他は1回だけ発生しています。したがって、出力は{1、5、2}

になります。

アルゴリズム

moreFreq(arr、n)

Begin
   define map with int type key and int type value
   for each element e in arr, do
      increase map.key(arr).value
   done
   for each key check whether the value is more than 1, then print the key
End

#include <iostream>
#include <map>
using namespace std;
void moreFreq(int arr[], int n){
   map<int, int> freq_map;
   for(int i = 0; i<n; i++){
      freq_map[arr[i]]++; //increase the frequency
   }
   for (auto it = freq_map.begin(); it != freq_map.end(); it++) {
      if (it->second > 1)
         cout << it->first << " ";
   }
}
int main() {
   int arr[] = {1, 5, 2, 5, 3, 1, 5, 2, 7};
   int n = sizeof(arr)/sizeof(arr[0]);
   cout << "Frequency more than one: ";
   moreFreq(arr, n);
}

出力

Frequency more than one: 1 2 5

  1. 2つ以上(または配列)の数値のGCD0のC++プログラム?

    ここでは、3つ以上の数値の公約数を取得する方法を説明します。 2つの数値の公約数を見つけるのは簡単です。 3つ以上の数値のgcdを見つけたい場合は、gcdの結合法則に従う必要があります。たとえば、{w、x、y、z}のgcdを検索する場合は、{gcd(w、x)、y、z}、次に{gcd(gcd(w、x)、y)になります。 、z}、最後に{gcd(gcd(gcd(w、x)、y)、z)}。アレイを使用すると、非常に簡単に実行できます。 アルゴリズム gcd(a、b) begin    if a is 0, then       return b &n

  2. 2つ以上(または配列)の数値のGCD用のJavaプログラム

    以下は、2つ以上の数字のGCD用のJavaプログラムです- 例 public class Demo{    static int gcd_of_nums(int val_1, int val_2){       if (val_1 == 0)       return val_2;       return gcd_of_nums(val_2 % val_1, val_1);    }    static int find_gcd(int arr