avatar
P*b
1
从一副牌中选n张,使其和为。
打印所有结果。
要求不能用递归。
谁给讲讲思路吧。谢谢
avatar
s*n
2
for number of cards from 1 to 为。, do
for each collection of cards,
if cards number < n,
foreach the rest card c of this collection,
sum = c + sum(collection)
if sum < n, add c union collection into a new collection,
if sum = n, print c union collection,
end foreach
remove the collection from the collection of the collection
end foreach
end for

【在 P*******b 的大作中提到】
: 从一副牌中选n张,使其和为。
: 打印所有结果。
: 要求不能用递归。
: 谁给讲讲思路吧。谢谢

avatar
P*b
3
谢谢回复。再问一下。这里for each collection of cards, 这些collection这么造出
来的?

【在 s*****n 的大作中提到】
: for number of cards from 1 to 为。, do
: for each collection of cards,
: if cards number < n,
: foreach the rest card c of this collection,
: sum = c + sum(collection)
: if sum < n, add c union collection into a new collection,
: if sum = n, print c union collection,
: end foreach
: remove the collection from the collection of the collection
: end foreach

avatar
M*u
4
subset sum,动态规划

【在 P*******b 的大作中提到】
: 谢谢回复。再问一下。这里for each collection of cards, 这些collection这么造出
: 来的?

avatar
s*n
5
就是说你可以用任何的collection.arraylist,vector, list 或者whatever java/c#
generic.

【在 P*******b 的大作中提到】
: 谢谢回复。再问一下。这里for each collection of cards, 这些collection这么造出
: 来的?

avatar
P*b
6
container?
看算法好像有好多个container,不太明白怎么来的。

【在 s*****n 的大作中提到】
: 就是说你可以用任何的collection.arraylist,vector, list 或者whatever java/c#
: generic.

avatar
P*b
7
能否给个能抽象成这道题的链接

【在 M**u 的大作中提到】
: subset sum,动态规划
avatar
P*l
8
这是那个“数组里两个数和为给定值”问题的扩展版。
觉得枚举每个组合就挺好。比如,52张牌选三张的组合是
1, 1, 1
1, 1, 2
1, 1, 3
。。。
1, 1, 13
1, 2, 2
1, 2, 3
。。。
11, 13, 13
12, 12, 12
12, 12, 13
12, 13, 13
13, 13, 13
如果要选4张牌,使其和为28,就可以通过前三张算出第四张,然后检查是否符合要求。
代码:
http://code.google.com/p/sureinterview/source/browse/test/test1/CombinationTest.java#120
public void testNumComb2() {
// list all combinations of c(7,3)
int suit = 4;
int rank = 13;
int takeN = 3; //4-1=3。
int totalNum = 28;
List numList = new ArrayList();
for (int i = 1; i <= rank; i++) {
for (int j = 0; j < suit; j++) {
numList.add(i);
}
}
Combination comb = new CombinationImpl(numList,
takeN);
for (List cb : comb) {
// System.out.println(StringUtils.join(cb.toArray(), ", "));
int sum = 0;
for (Integer num : cb) {
sum += num;
}
int lastNum = totalNum - sum;
int tk1 = cb.get(takeN - 1);
//检查是否符合要求
if (lastNum <= rank && (lastNum > tk1 || //
((takeN < suit || tk1 == cb.get(takeN - suit)) &&
lastNum == tk1))) {
System.out.print(StringUtils.join(cb.toArray(), ", "));
System.out.println(", " + lastNum);
}
}
}
枚举带重复的组合的代码:
http://code.google.com/p/sureinterview/source/browse/src/lib/combination/CombinationImpl.java#158
看看有问题没有?
avatar
P*b
9
试了一下,能判断是否有满足条件的解,但是不知道怎么把所有的解都出来。
还望多指教。

【在 M**u 的大作中提到】
: subset sum,动态规划
avatar
P*b
10
就是非递归的到所有组合吧。我觉得可以吧,不过看不太懂。

【在 P********l 的大作中提到】
: 这是那个“数组里两个数和为给定值”问题的扩展版。
: 觉得枚举每个组合就挺好。比如,52张牌选三张的组合是
: 1, 1, 1
: 1, 1, 2
: 1, 1, 3
: 。。。
: 1, 1, 13
: 1, 2, 2
: 1, 2, 3
: 。。。

avatar
P*b
11
再贴一下原题
有n张扑克牌,从中随机选出几张。要求找出所有的选法,使得所选扑克牌的点数的和是
s. 不用recursion,代码行数越少越好。

【在 P*******b 的大作中提到】
: 就是非递归的到所有组合吧。我觉得可以吧,不过看不太懂。
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。