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
|
#include <iostream>
#include <vector>
using namespace std;
#define MAX_ITEMS 10
int values[] = { 0, 1, 2, 5, 10, 20, 50, 100, 200, 500, 1000, 2000};
struct Node
{
int valueID,
depth;
Node *prev;
Node()
{
valueID = 0;
depth = 0;
prev = NULL;
}
Node(int ID, Node *parent)
{
valueID = ID;
prev = parent;
depth = prev->depth + 1;
}
};
void printBranch(Node *node)
{
Node *position = node;
while(position->depth > 0)
{
cout << position->valueID << ", ";
position = position->prev;
}
cout << "\n\n";
}
vector<Node> Combos;
int iAlgorithm(int sum, Node *parent, int index)
{
if(parent->depth > MAX_ITEMS || sum < 0)
return 0;
for(int i=index; i<12; i++)
{
if(sum - values[i] == 0)
{
Combos.push_back(Node(values[i], parent));
return 1;
}
if(sum - values[i] > 0)
{
Node* newNode = (Node*) malloc(sizeof(Node));
newNode->valueID=values[i];
newNode->prev=parent;
newNode->depth=parent->depth+1;
iAlgorithm(sum - values[i], newNode, i);
}
}
return 0;
}
int main()
{
Node Root = Node();
iAlgorithm(1366, &Root, 1);
for(int i=0; i<Combos.size(); i++)
printBranch(&Combos[i]);
return 0;
}
|