用回溯法解决01背包问题

#include<stdio.h>int c; // 背包含量int n; // 物件数int weight[100]; // 寄存 n 个物件重量的数组int price[100]; // 寄存 n

腾讯文库用回溯法解决01背包问题用回溯法解决01背包问题