我想找到大小为5的数组的组合,最多可达15个。这是最好的方法。
假设我有数组
7 8 10 5 3
在C ++中找到所有加起来为15的数字的最佳方法是什么
答案 0 :(得分:1)
“最好”的方式取决于你的优化。
如果数组中的元素不多,则有一个简单的组合算法:对于从1到n
的所有长度(其中n
是数组中元素的数量),检查所有可能的成套n
个数字,每个数字打印到十五个。
从实施时间的角度来看,这可能是最好的。从运行时效率的角度来看,动态编程解决方案(这是一个DP问题)可能是最好的;这里的DP解决方案是O(N³)
,其中组合解决方案远不止于此。
DP算法的要点(我不是在编写代码)是通过你的数组,并跟踪你到目前为止看到的子数组可能产生的所有可能的总和。当您到达每个新的数组元素时,请浏览之前获得的所有部分总和并将其添加到它们中(不删除原始的部分和)。每当有东西击中15或经过它时,从您正在跟踪的集合中丢弃该总和(如果它完全达到15,则打印出来)。
答案 1 :(得分:1)
我的建议是去递归。
跟踪baseindex和currentindex 并尝试在每次递归时累积值
当累计值为15时,返回currentindex的整数值 否则,如果currentindex达到5且累计值不是15则返回0
当return为0且baseindex仍然小于5时,将1添加到基本索引并重置当前索引和累计值并再次开始递归。
答案 2 :(得分:1)
如果您在评论中提到,10是问题中的最高数字(也是最大元素数)。然后一个强力(具有聪明的位掩码,见this tutorial)将会:
// N is the number of elements and arr is the array.
for (int i = 0; i < (1 << N); ++i) {
int sum = 0;
for (int j = 0; j < N; ++j) if (i & (1 << j)) sum += arr[j];
if (sum == required_sum); // Do something with the subset represented by i.
}
该算法具有复杂度O(N * 2 ^ N)。注意,只要N 但是,如果N很大但N * required_sum不是很大(高达数百万),则可以使用以下重复(使用动态编程或记忆): 其中f(k,S)表示使用元素子集0..k得到和S的可能性。动态编程表可用于生成所有子集。生成表的运行时间是O(N * S),其中S是所需的总和。从表中生成子集的运行时间与这些子集的数量成比例(可能非常大)。 关于此问题的一般说明: 问题一般是NP-Complete。因此,它没有已知的多项式时间算法。它确实有一个pseudo-polynomial time algorithm,即上面的重现。 f(0, 0) = 1
f(0, n) = 0 where n > 0
f(k, n) = 0 where k < 0
f(k + 1, S) = f(k, S - arr[k]) + f(k, S) where k >= 0
答案 3 :(得分:1)
对元素数组进行排序。 维护两个指针,一个在排序数组的开头,另一个在结尾。 如果两个元素的总和大于15,则减小第二个指针。 如果总和小于15,则增加第一个指针。 如果sum等于15,则记录这两个元素,并增加第一个指针。
希望它有效。
答案 4 :(得分:0)
递归是我能想到的一个选择。因为我手上有一些空余时间,所以我将这个功能集中在一起(虽然它可能不必要地大,并且没有被优化到极致)。我只用你提供的数字测试过它。
void getCombinations( std::vector<int>& _list, std::vector<std::vector<int>>& _output,
std::vector<int>& _cSumList = std::vector<int>(), int _sum = 0 )
{
for ( std::vector<int>::iterator _it = _list.begin(); _it < _list.end(); ++_it)
{
_sum += *_it;
_cSumList.push_back( *_it );
std::vector<int> _newList;
for ( std::vector<int>::iterator _itn = _list.begin(); _itn < _list.end(); ++_itn )
if ( *_itn != *_it )
_newList.push_back( *_itn );
if ( _sum < 15 )
getCombinations( _newList, _output, _cSumList, _sum );
else if ( _sum == 15 )
{
bool _t = false;
for ( std::vector<std::vector<int>>::iterator _itCOutputList = _output.begin(); _itCOutputList < _output.end(); ++_itCOutputList )
{
unsigned _count = 0;
for ( std::vector<int>::iterator _ita = _itCOutputList->begin(); _ita < _itCOutputList->end(); ++_ita )
for ( std::vector<int>::iterator _itb = _cSumList.begin(); _itb < _cSumList.end(); ++_itb )
if ( *_itb == *_ita )
++_count;
if ( _count == _cSumList.size() )
_t = true;
}
if ( _t == false )
_output.push_back( _cSumList );
}
_cSumList.pop_back();
_sum -= *_it;
}
}
您的号码使用示例:
int _tmain(int argc, _TCHAR* argv[])
{
std::vector<int> list;
list.push_back( 7 );
list.push_back( 8 );
list.push_back( 10 );
list.push_back( 5 );
list.push_back( 3 );
std::vector<std::vector<int>> output;
getCombinations( list, output );
for ( std::vector<std::vector<int>>::iterator _it = output.begin(); _it < output.end(); ++_it)
{
for ( std::vector<int>::iterator _it2 = (*_it).begin(); _it2 < (*_it).end(); ++_it2)
std::cout << *(_it2) << ",";
std::cout << "\n";
}
std::cin.get();
return 0;
}
最佳方式是主观的。正如我所说,上面的代码可以大大改进,但应该给你一个起点。