Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C++

C++ STL में unordered_multimap आकार () फ़ंक्शन

C++ STL में

unordered_multimap size() फंक्शन अनियंत्रित मैप में तत्वों की संख्या लौटाता है।

एल्गोरिदम

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. atanh () सी ++ एसटीएल में समारोह

    atanh() फ़ंक्शन रेडियन में दिए गए कोण के चाप अतिपरवलयिक स्पर्शरेखा या प्रतिलोम अतिपरवलयिक स्पर्शरेखा देता है। यह C++ STL में एक इनबिल्ट फंक्शन है। atanh() फ़ंक्शन का सिंटैक्स निम्नानुसार दिया गया है। atanh(var) जैसा कि सिंटैक्स से देखा जा सकता है, फ़ंक्शन atanh () डेटा प्रकार फ्लोट, डबल या लॉन्ग ड

  1. C++ STL में cosh () फंक्शन

    cosh() फ़ंक्शन रेडियन में दिए गए कोण की अतिपरवलयिक कोज्या लौटाता है। यह C++ STL में एक इनबिल्ट फंक्शन है। कोश () फ़ंक्शन का सिंटैक्स निम्नानुसार दिया गया है। cosh(var) जैसा कि सिंटैक्स से देखा जा सकता है, फ़ंक्शन कोश () डेटा प्रकार फ्लोट, डबल या लॉन्ग डबल के पैरामीटर var को स्वीकार करता है। यह var

  1. सिंह () सी ++ एसटीएल में समारोह

    sinh() फ़ंक्शन रेडियन में दिए गए कोण की अतिपरवलयिक ज्या लौटाता है। यह C++ STL में एक इनबिल्ट फंक्शन है। sinh() फ़ंक्शन का सिंटैक्स निम्नानुसार दिया गया है। sinh(var) जैसा कि सिंटैक्स से देखा जा सकता है, फ़ंक्शन sinh () डेटा प्रकार फ्लोट, डबल या लॉन्ग डबल के पैरामीटर var को स्वीकार करता है। यह var