C++ std operator>C++ Multiset Operator> is a non-member overloaded function of multiset. This function is used to check whether the first multiset is greater than other or not. Note: Operator> sequentially compares the element of multiset and comparison will stop at first mismatch.SyntaxParameterlhs: First multiset object. rhs: Second multiset object. Return valueIt returns true if the left side of the multiset container object is greater than the right side of the multiset object otherwise false. ComplexityComplexity will be constant, if the size of lhs and rhs is different. Otherwise, up to linear in the size of lhs and rhs. Iterator validityNo changes. Data RacesContainers, lhs and rhs are accessed. Concurrently accessing the elements of unmodified multiset is always safe. Exception SafetyThis function does not throw an exception. Example 1Let's see the simple example to check whether the first multiset is greater than or not: Output: Multiset m1 is greater than m2. Multiset m1 is not greater than m2. In the above example, there are two multisets m1 and m2. The m1 multiset contains one element and m2 is empty. When we compare both multisets then it will display the message "multiset m1 is greater than m2" and after assigning m2 to m1 both multisets have equal element then it will display the message that "multiset m1 is not greater than m2". Example 2Let's see a simple example: Output: The multiset m1 is not greater than the multiset m2. The multiset m1 is greater than the multiset m3. Example 3Let's see a simple example: Output: 0 1 In the above example, if s1 is greater than s2, then it will return 1 otherwise 0. Example 4Output: 1). ---------Login---------- Enter password: xyz@123 Password you have entered: xyz@123 Password stored in the system: xyz@123 Welcome to your Page... 2). ---------Login---------- Enter password: abc@123 Password you have entered: abc@123 Password stored in the system: xyz@123 Incorrect Password... In the above example, there are two multisets m1 and m2. The m1 multiset contains stored password and second multiset m2 stores user's entered password. It checks whether the m2 is greater than m1 or not. If password of m2 is not greater than m1 then login is successful otherwise login fails. Next TopicC++ multiset |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India