Given a list of numbers, find the number of tuples of size N that add to S. for example in the list (10,5,-1,3,4,-6), the tuple of size 4 (-1,3,4,-6) adds to 0. 题目: 给一数组,求数组中和为S的N个数 思路: 回溯法,数组中每个数都有两种选择,取或者不取: 当选择的数等于N时,则判断该数之和是否等于S. 代码: #include <io