C++ Exercises: Separate 0s and 1s from a given array of values 0 and 1
C++ Array: Exercise-14 with Solution
Write a C++ program to separate 0s and 1s from a given array of values 0 and 1.
Visual Presentation:
Sample Solution:
C++ Code :
#include<iostream> // Header file for input/output stream
using namespace std; // Using the standard namespace
// Function to segregate 0s and 1s in the array
void segregateEvenOdd(int nums[], int n)
{
int ctr = 0; // Initialize a counter for the number of zeroes
// Count the number of zeroes in the array
for (int i = 0; i < n; i++) {
if (nums[i] == 0)
ctr++;
}
// Place the counted zeroes at the beginning of the array
for (int i = 0; i < ctr; i++)
nums[i] = 0;
// Place the remaining ones after the zeroes in the array
for (int i = ctr; i < n; i++)
nums[i] = 1;
}
// Main function
int main()
{
int nums[] = {0, 1, 0, 0 , 1, 1, 1, 0, 1, 0}; // Declaration and initialization of an integer array
int n = sizeof(nums)/sizeof(nums[0]); // Calculate the number of elements in the array
cout << "Original array: ";
for (int i=0; i < n; i++)
cout << nums[i] <<" "; // Output each element of the original array
segregateEvenOdd(nums, n); // Rearrange the array by segregating 0s and 1s
cout << "\nArray after segregation: ";
for (int i=0; i < n; i++)
cout << nums[i] <<" "; // Output each element of the modified array
return 0;
}
Sample Output:
Original array: 0 1 0 0 1 1 1 0 1 0 Array after divided: 0 0 0 0 0 1 1 1 1 1
Flowchart:
C++ Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a C++ program to separate even and odd numbers of an array of integers. Put all even numbers first, and then odd numbers.
Next: Write a C++ program to rearrange a given sorted array of positive integers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/cpp-exercises/array/cpp-array-exercise-14.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics