給定一個數組和一個數M,在數組中求一些數使它們的和最接近M------遞歸

#include <iostream>   #include <math.h>   using namespace std;      /*數組從a[from]到a[to],b[i]=true表示a[i]被選到,假設選到的那些數和爲sum,      函數返回M-sum.....*/   int func(int* a, int from, int to, bool* b, int M)   { 
相關文章
相關標籤/搜索