【TRICK】[0,n)中所有大小为k的子集的方法
1 int comb = (1 << k) - 1; 2 while (comb < (1<<n)) { 3 int x = comb & -comb, y = comb + x; 4 comb = (((comb & ~y)/x)>>1) | y; 5 }
posted @ 2017-04-07 15:21 Bombe 阅读(213) 评论(0) 推荐(0) 编辑
1 int comb = (1 << k) - 1; 2 while (comb < (1<<n)) { 3 int x = comb & -comb, y = comb + x; 4 comb = (((comb & ~y)/x)>>1) | y; 5 }
posted @ 2017-04-07 15:21 Bombe 阅读(213) 评论(0) 推荐(0) 编辑
posted @ 2016-06-30 21:40 Bombe 阅读(1890) 评论(1) 推荐(0) 编辑
posted @ 2016-06-21 23:05 Bombe 阅读(206) 评论(0) 推荐(0) 编辑
posted @ 2016-06-18 23:52 Bombe 阅读(414) 评论(0) 推荐(0) 编辑
posted @ 2016-06-17 22:04 Bombe 阅读(202) 评论(0) 推荐(0) 编辑
posted @ 2016-06-17 19:01 Bombe 阅读(271) 评论(0) 推荐(0) 编辑
posted @ 2016-05-21 22:40 Bombe 阅读(351) 评论(0) 推荐(0) 编辑
posted @ 2016-04-02 22:29 Bombe 阅读(269) 评论(0) 推荐(0) 编辑
posted @ 2016-03-30 12:31 Bombe 阅读(220) 评论(0) 推荐(0) 编辑
posted @ 2016-03-30 12:03 Bombe 阅读(261) 评论(0) 推荐(0) 编辑