1's Complement

PROBLEM :

Given an N bit binary number, find the 1's complement of the number. The ones' complement of a binary number is defined as the value obtained by inverting all the bits in the binary representation of the number (swapping 0s for 1s and vice versa).

Input:

The first line of input takes the number of test cases, T. Then T test cases follow. The first line of each test case takes the number of bits, N. The second line of each test case takes N space separated integers denoting the N bits of the binary number.

Output:

Print the 1's complement for each test case in a new line.

Constraints:

1<=T<=100

1<=N<=100

Example:

Input:

3
2
1 0
2
1 1
3
1 0 1

Output:
0 1
0 0 0 1 0

--------------------------------------------------------------------------------
SIMPLE c++ IMPLEMENTATION :
--------------------------------------------------------------------------------

#include<iostream>
using namespace std;
void Complement(int [],int ) ;
int main()
 {
int t,arr[100],i,no ;
cin>>t ;
while(t--)
{
   cin>>no ;
   for(i=0;i<no;i++)
       cin>>arr[i] ;
     
   Complement(arr,no)  ;
 
   for(i=0;i<no;i++)
       cout<<arr[i]<<" " ;
 
   cout<<endl ;
}
return 0;
}

void Complement(int arr[],int no)
{
    int i ;
   
    for(i=0;i<no;i++)
    {
        if(arr[i]==1)
            arr[i]=0 ;
        else
            arr[i]=1 ;
    }
}

---------------------------------------------------------------------------------

Comments

Popular posts from this blog

Count ways to N'th Stair(Order does not matter)

Replace all ‘0’ with ‘5’ in an input Integer

Chocolate Distribution Problem

Remove characters from the first string which are present in the second string

Primality Test ( CodeChef Problem code: PRB01 )