用回溯法解决01背包问题
#include<stdio.h>int c; // 背包含量int n; // 物件数int weight[100]; // 寄存 n 个物件重量的数组int price[100]; // 寄存 n
用回溯法解决01背包问题