Partition

In this lesson, we will study different algorithms that partition a range or help in the partitioning of a range.

We'll cover the following...

ℹ️ What is a partition?
A partition of a set is a decomposition of a set into subsets such that each element of the set is precisely in one subset. The subsets are defined in C++ by a unary predicate so that ...