-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCTDL004.cpp
72 lines (63 loc) · 1.25 KB
/
SCTDL004.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* @file SCTDL004.cpp
* @author long ([email protected])
* @brief C++ program generates AB strings
* Ideal: Generate binary strings
* Description: 0 -> A
* 1 -> B
* @version 0.1
* @date 2023-03-04
*
* @copyright Copyright (c) 2023
*
*/
#include <bits/stdc++.h>
using namespace std;
#define c0 "A"
#define c1 "B"
int t, n;
int arr[30];
// Function to print the output
void printTheArray(int arr[], int n)
{
for (int i = 0; i < n; i++) {
if (arr[i] == 0)
cout << c0;
else
cout << c1;
}
cout << " ";
}
// Function to generate all binary strings
void generateAllBinaryStrings(int n, int arr[], int i)
{
if (i == n) {
printTheArray(arr, n);
return;
}
// First assign "0" at ith position
// and try for all other permutations
// for remaining positions
arr[i] = 0;
generateAllBinaryStrings(n, arr, i + 1);
// And then assign "1" at ith position
// and try for all other permutations
// for remaining positions
arr[i] = 1;
generateAllBinaryStrings(n, arr, i + 1);
}
int main()
{
cin >> t;
while(t--)
{
cin >> n;
generateAllBinaryStrings(n, arr, 0);
for(int i=0; i < n; i++)
{
arr[i] = 0;
}
cout << endl;
}
return 0;
}