11 lines
204 B
C
11 lines
204 B
C
#ifndef KNAPSACK_H
|
|
#define KNAPSACK_H
|
|
|
|
typedef struct {
|
|
unsigned int weight;
|
|
unsigned int value;
|
|
} item_t;
|
|
|
|
int maximum_value(unsigned int maximum_weight, item_t *items, size_t item_count);
|
|
|
|
#endif
|