devxlogo

The remove_if() algorithm

The remove_if() algorithm

The remove_if() algorithms (defined in the standard header ) has the following prototype:

 template ForwardIterator  remove (ForwardIterator first,                         ForwardIterator last,                         Predicate pred);

The first two arguments mark the sequence’s beginning and end. The third argument is a predicate. Unlike remove(), remove_if() uses the predicate provided to select the elements it removes. This enables you to remove elements with different values that fall under the same category, e.g., odd numbers, vowels, uppercase letters etc. Using remove_if() is similar to using remove(). The tricky part in is the definition of the predicate. A concrete example will clarify this issue.

Suppose we want to remove all the vowels from a string object. Our predicate has to distinguish between a vowel and a non-vowel. We define the is_vowel predicate as follows:

 template  class is_vowel: public unary_function{public: bool operator ()(T t) const {  if ((t=='a')||(t=='e')||(t=='i')||(t=='o')||(t=='u'))   return true; //t is a vowel  return false; // t is not a vowel }};

Our goal is to read a string from the standard input, remove all the vowels therein by using remove_if(), and display the resulting vowel-less string. The first part is straightforward:

 #include #include  #include  // for remove_ifusing namespace std;int main(){ string original; cin >> original; //

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist