A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/cpp_standard_library/cpp_multimap_operator_less_than.htm below:

C++ Map Library - operator< Function

C++ Map Library - operator< Function Description

The C++ function std::multimap::operator< tests whether first multimap is less than other or not.

Operator < compares element sequentially and comparison stops at first mismatch.

Declaration

Following is the declaration for std::multimap::operator

C++98
template <class Key, class T, class Compare, class Alloc>
bool operator< ( const multimap<Key,T,Compare,Alloc>& m1,
                  const multimap<Key,T,Compare,Alloc>& m2);
Parameters Return value

Returns true if first multimap is less than second otherwise false.

Exceptions

No effect on container if exception is thrown.

Time complexity

Linear i.e. O(n)

Example

The following example shows the usage of std::multimap::operator< function.

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   /* Multimap with duplicates */
   multimap<char, int> m1;
   multimap<char, int> m2;

   m2.insert(pair<char, int>('a', 1));

   if (m1 < m2)
      cout << "m1 multimap is less than m2." << endl;

   m1 = m2;

   if (!(m1 < m2))
      cout << "m1 multimap is not less than m2." << endl;

   return 0;
}

Let us compile and run the above program, this will produce the following result −

m1 multimap is less than m2.
m1 multimap is not less than m2.

map.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4