

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
1 to n bit numbers with no consecutive 1s in binary representation?
In this problem, we have to find some binary numbers which have no consecutive 1s. In a 3-bit binary string, there are three binary numbers 011, 110, 111, who have consecutive 1s, and five numbers are there which have no consecutive 1s. So after applying this algorithm for 3-bit numbers, the answer will be 5.
If a[i] be the set of binary numbers, whose number of bits are i, and not containing any consecutive 1s, and b[i] is the set of binary number, where number of bits are i, and containing consecutive 1s, then there are recurrence relations like −
a[i] := a[i - 1] + b[i - 1]
b[i] := a[i - 1]
Input
This algorithm takes number of bits for a binary number. Let the input is 4.
Output
It returns the number of binary strings which have no consecutive 1’s.
Here the result is − 8. (There are 8 binary strings which has no consecutive 1’s)
Algorithm
countBinNums(n)
Input: n is the number of bits. Output: Count how many numbers are present which have no consecutive 1. Begin define lists with strings ending with 0 and ending with 1 endWithZero[0] := 1 endWithOne[0] := 1 for i := 1 to n-1, do endWithZero[i] := endWithZero[i-1] + endWithOne[i-1] endWithOne[i] := endWithZero[i-1] done return endWithZero[n-1] + endWithOne[n-1] End
Example
#include <iostream> using namespace std; int countBinNums(int n) { int endWithZero[n], endWithOne[n]; endWithZero[0] = endWithOne[0] = 1; for (int i = 1; i < n; i++) { endWithZero[i] = endWithZero[i-1] + endWithOne[i-1]; endWithOne[i] = endWithZero[i-1]; } return endWithZero[n-1] + endWithOne[n-1]; } int main(){ int n; cout << "Enter number of bits: "; cin >> n; cout << "Number of binary numbers without consecutive 1's: "<<countBinNums(n) << endl; return 0; }
Output
Enter number of bits: 4 Number of binary numbers without consecutive 1's: 8
- Related Questions & Answers
- Find consecutive 1s of length >= n in binary representation of a number in C++
- Calculating 1s in binary representation of numbers in JavaScript
- Count numbers have all 1s together in binary representation in C++
- Maximum consecutive 1s after n swaps in JavaScript
- Program to find longest consecutive run of 1s in binary form of n in Python
- Find the number of binary strings of length N with at least 3 consecutive 1s in C++
- Sorting according to number of 1s in binary representation using JavaScript
- Program to sort numbers based on 1 count in their binary representation in Python
- XOR counts of 0s and 1s in binary representation in C++
- An Interesting Method to Generate Binary Numbers from 1 to n?
- N consecutive odd numbers JavaScript
- Print n 0s and m 1s such that no two 0s and no three 1s are together in C Program
- Binary String With Substrings Representing 1 To N in C++
- Find value of k-th bit in binary representation in C++
- Count Binary String without Consecutive 1's