-
Notifications
You must be signed in to change notification settings - Fork 0
/
powerset.cpp
90 lines (78 loc) · 2.89 KB
/
powerset.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
* Copyright (C) 2011 Kiel Friedt
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/***********************************************************
Homework question for Amazon interview 1/18/2011
Name: Kiel Friedt
E-mail: [email protected]
Efficiency: O(2^n)
***********************************************************/
#include <iostream>
#include <math.h>
using namespace std;
/************************************************************
// Function Name: powerset
// Parameters: char ** buffer, int size
// Description: loops through all possible subsets ie: 2^argc-1.
// Checks if valueInBits ends in 1, ie: 0001, if so prints current buffer element by index.
// Then divides valueInBits by 2 each time until 0, while also incrementing the index of array.
************************************************************/
void powerset(char ** buffer, int size)
{
int i = 0, index = 0, valueInBits = 0;
for (i = 0 ; i < size ; ++i) { // loops through all possible subsets ie: size = 2^argc-1
printf("{");
valueInBits = i;
index = 0;
while(valueInBits){//loops while valueInBits != 0
if(valueInBits & 1)//logical &, if valueInBits has a 1 in 1's place, it will be true
cout << " " <<buffer[index] << " ";
valueInBits >>= 1; //shift valueInBits by 1 and reassign value
index++;
}
printf("} ");
}
}
/************************************************************
// Function Name: Main
// Parameters: int argc, char * const argv[]
// Description: Reads in arguments from the command line.
// Then creates a dynamic two dem array and fills it will argument list.
// Then calls powerset with array and total possible elements, then deallocates memory.
************************************************************/
int main (int argc, char * const argv[]) {
char **buffer;
int size = 0, i = 0;
if (argc < 2) {
cout << "error: must have a set to make a powerset.\n";
return 0;
}
size = pow(2,argc-1);
/* fills array with argv[]*/
buffer = new char*[argc-1];
for (i = 0; i < argc-1;++i){
buffer[i] = new char[(strlen(argv[i+1]))+1];
strcpy(buffer[i],argv[i+1]);
}
cout << "size of powerset: " << size << " {";
powerset(buffer,size);
cout << "}\n";
/* deallocates memory*/
for(i = 0 ; i < argc-1 ; ++i )
delete [] buffer[i];
delete [] buffer;
return 0;
}