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

C ++STLのunordered_multimapsize()関数


C ++STLのunordered_multimapsize()関数は、順序付けされていないマップの要素数を返します。

アルゴリズム

Begin
   Declare an empty map container m.
   Performing reserve function to restrict the most appropriate
   bucket_count of the map container.
   Insert values in the map container.
   Print the size of the unorderd multimap container by using the size() function.
End

サンプルコード

#include<iostream>
#include <bits/stdc++.h>
using namespace std;

int main() {
   unordered_map<char, int> m; // declaring m as empty map container

   m.reserve(6); //restricting the most appropriate bucket_count of map container
   m.insert (pair<char, int>('b', 10)); // inserting some values
   m.insert (pair<char, int>('a', 20));

   cout << "The size is: " << m.size(); //printing the size of unordered multimap container by size() function.

   return 0;
}

出力

The size is :2

  1. C ++ STLのcosh()関数

    cosh()関数は、ラジアンで指定された角度の双曲線正弦を返します。これはC++STLに組み込まれている関数です。 cosh()関数の構文は次のとおりです。 cosh(var) 構文からわかるように、関数cosh()は、データ型float、double、またはlongdoubleのパラメーターvarを受け入れます。 varの双曲線コサインを返します。 C ++でcosh()を示すプログラムは次のとおりです- 例 #include <iostream> #include <cmath> using namespace std; int main() {  

  2. C ++ STLのsinh()関数

    sinh()関数は、ラジアンで指定された角度の双曲線正弦を返します。これはC++STLに組み込まれている関数です。 sinh()関数の構文は次のとおりです。 sinh(var) 構文からわかるように、関数sinh()は、データ型float、double、またはlongdoubleのパラメーターvarを受け入れます。 varの双曲線サインを返します。 C ++でsinh()を示すプログラムは次のとおりです。 例 #include <iostream> #include <cmath> using namespace std; int main() {