Home » C++ multiset non member operator greater than=

C++ multiset non member operator greater than=

by Online Tutorials Library

C++ std operator>=

C++ Multiset Operator>= is a non-member overloaded function of multiset in C++. This function is used to check whether the first multiset is greater than or equal to other or not.

Note: Operator >= sequentially compares the element of multiset and comparison will stop at first mismatch.

Syntax

Parameter

lhs: First multiset object.

rhs: Second multiset object.

Return value

It returns true if the left side of the multiset container object is greater than or equal to the right side of the multiset container object otherwise false.

Complexity

Complexity will be constant, if the size of lhs and rhs is different.

Otherwise, up to linear in the size of lhs and rhs.

Iterator validity

No changes.

Data Races

Containers, lhs and rhs are accessed.

Concurrently accessing the elements of unmodified multiset is always safe.

Exception Safety

This function does not throw an exception.

Example 1

Let’s see a simple example to check whether the first multiset is greater than or equal to or not:

Output:

Multiset m1 is greater than or equal to m2.  Multiset m1 is not greater than or equal to m2.  

In the above example, there are two multisets m1 and m2. m1 and m2 contains one element. When we compare both multisets then it will display the message “multiset m1 is greater than or equal to m2” and after adding one more element to m2, it will display the message “multiset m1 is not greater than or equal to m2”.

Example 2

Let’s see a simple example:

Output:

The multiset m1 is less than the multiset m2.  Multiset m1 is greater than or equal to multiset m3.  Multiset m1 is greater than or equal to multiset m4.  

Example 3

Let’s see a simple example:

Output:

1  0  

In the above example, if m1 is greater than or equal to m2, then it will return 1 otherwise 0.

Example 4

Output:

1).  ---------Login----------    Enter password:   [email protected]  Password you have entered:   [email protected]  Password stored in the system :  [email protected]    Welcome to your Page...      2).  ---------Login----------    Enter password:   [email protected]  Password you have entered:   [email protected]  Password stored in the system :  [email protected]    Incorrect Password...  

In the above example, there are two multisets m1 and m2. m1 contains stored password and second multiset m2 stores user’s entered password. It checks whether m1 is greater than or equal to m2 or not. If password of m1 is greater than or equal to m2 then login is successful otherwise login fails.

Next TopicC++ multiset

You may also like