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

C++の醜い数


醜い数は素因数が2、3または5である数です。1から15まで、11の醜い数1、2、3、4、5、6、8、9、10、12、15があります。数7 、11、13は素数であるため、醜いものではありません。素因数で7が来るので、14という数字は醜いものではありません。したがって、10番目の醜い数字を確認したいとします。値は12になります。

アイデアを得るために次のアルゴリズムを見てみましょう-

アルゴリズム

getUglyNumbers(n)

入力 −用語の数。

出力 −n番目の醜い数字を見つけます。

Begin
   define array named uglyNum of size n
   i2 := 0, i3 := 0, i5 := 0
   next2mul := 2, next3mul := 3, next5Mul := 5
   next := 1
   ugluNum[0] := 1
   for i := 1 to n, do
      next := minimum of next2Mul, next3Mul and next5Mul
      uglyNum[i] := next
      if next = next2Mul, then
         i2 := i2 + 1
         next2mul := uglyNum[i2] * 2
      if next = next3Mul, then
         i3 := i3 + 1
         next3mul := uglyNum[i3] * 3
      if next = next5Mul, then
         i5 := i5 + 1
            next5mul := uglyNum[i5] * 5
   done
   return next
End

例(C ++)

# include<iostream>
using namespace std;
int min(int x, int y, int z){ //find smallest among three numbers
   if(x < y){
      if(x < z)
         return x;
      else
         return z;
   }
   else{
      if(y < z)
         return y;
      else
         return z;
   }
}
int getUglyNum(int n){
   int uglyNum[n]; // To store ugly numbers
   int i2 = 0, i3 = 0, i5 = 0;
   //find next multiple as 1*2, 1*3, 1*5
   int next2mul = 2;
   int next3mul = 3;
   int next5mul = 5;
   int next = 1; //initially the ugly number is 1
   uglyNum[0] = 1;
   for (int i=1; i<n; i++){
      next = min(next2mul, next3mul, next5mul); //find next ugly number
      uglyNum[i] = next;
      if (next == next2mul){
         i2++; //increase iterator of ugly numbers whose factor is 2
         next2mul = uglyNum[i2]*2;
      }
      if (next == next3mul){
         i3++; //increase iterator of ugly numbers whose factor is 3
         next3mul = uglyNum[i3]*3;
      }
      if (next == next5mul){
         i5++; //increase iterator of ugly numbers whose factor is 5
         next5mul = uglyNum[i5]*5;
      }
   }
   return next; //the nth ugly number
}
int main(){
   int n;
   cout << "Enter term: "; cin >> n;
   cout << n << "th Ugly number is: " << getUglyNum(n)<< endl;
}

入力

10

出力

Enter term: 10
10th Ugly number is: 12

  1. C++での質素な数

    この問題では、正の整数Nが与えられます。私たちのタスクは、与えられた数が質素な数であるかどうかをチェックするプログラムを作成することです。 不正な番号 −指定された数の素因数分解の桁数よりも厳密に桁数が多い数。 例 − 625、数625の素因数は5 4です。 。 625の桁数は3です。 5 4の桁数 は2です。 3は厳密に2より大きくなります。したがって、625は質素な数です。 最初のいくつかの質素な数は − 125、128、243、256、343、512、625など。 問題を理解するために例を見てみましょう Input: n = 128 Output: Frugal n

  2. C++五胞体数

    五胞体数は、パスカルの三角形の5番目の数として表されます。ご存知のように、これは5番目の数字です。つまり、パスカルの三角形に少なくとも5つの数字が必要です。したがって、このシリーズの最初の数字は 1 4 6 4 1から始まります。 パスカルの三角形の4行目。したがって、このチュートリアルでは、たとえば、n番目の五胞体数を見つける必要があります Input : 1 Output : 1 Input : 4 Output : 35 次の図から出力を確認できます- この問題については、可能な限り、これは一種のシリーズであるため、ソリューションでこのシリーズのパターンを見つけようと