Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,948 questions

51,890 answers

573 users

How to generate binary numbers from 0 to N using queue in C++

1 Answer

0 votes
#include <iostream>
#include <queue>
 
void generateBinaryNumbers(int n) {
    std::queue<std::string> q;

    q.push("1");
    int i = 1;
    while (i++ <= n) {
        q.push(q.front() + "0");
        q.push(q.front() + "1");
        std::cout << q.front() << ' ';
        q.pop();
    }
}
 
int main() {
    int n = 15;
     
    generateBinaryNumbers(n);
 
    return 0;
}
 
 
 
/*
run:
 
1 10 11 100 101 110 111 1000 1001 1010 1011 1100 1101 1110 1111 
 
*/

 



answered Jul 19, 2020 by avibootz
edited Jul 19, 2020 by avibootz

Related questions

2 answers 162 views
1 answer 139 views
1 answer 127 views
1 answer 193 views
1 answer 128 views
2 answers 140 views
...