C++ Algorithm is_partitioned()C++ Algorithm is_partitioned() is used to test to see if a range [first, last) is partitioned according to a predicate. In other words, all the elements in the range that satisfies the predicate are at the beginning of the sequence. If the range is empty then it returns true. SyntaxParameterfirst: An input iterator pointing to the first element in the range. last: An input iterator pointing to the past last element in the range. pred: A user-defined unary predicate function that returns true for the elements expected to be found in the beginning of the range. Return valueThis function returns true if the range is empty or is partitioned by given predicate pred, otherwise it returns false. ComplexityComplexity is linear in the range [first, last): calls pred for each element until a mismatch is found. Data racesThe object in the range [first, last) are accessed. Each element is accessed exactly once. ExceptionsThis function throws an exception if either pred or an operation on iterator throws an exception. Please note that invalid parameters cause an undefined behavior. Example 1Let's see the simple example to demonstrate the use of is_partitioned(): Output: Before Partition: 1 2 3 4 5 After partition : 4 2 3 1 5 Is it partitioned? Yes,It is Partitioned Example 2Let's see another simple example: Output: All the even no. are present before odd no. All the even no. are not present before odd no. Example 3Let's see another simple example: Output: false true false Example 4Let's see another simple example: Output: Before Partition: 11 2 3 4 15 12 After partition: 4 2 3 11 15 12 Is it partitioned? Yes, It is Partitioned. Next TopicC++ Algorithm |
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