码迷,mamicode.com
首页 > 其他好文 > 详细

位运算

时间:2017-12-24 13:47:48      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:blog   获得   turn   nbsp   std   using   while   pac   依次   

1.

欲求, 如:

00111

依次前移 01011

01101

01110

10011

10101

10110

11001

11010

11100

例如 当k=00111时 获得01011

先找出k右起第一次出现1的位置,对这个位置+1,然后在右边

补上少了的1即可

如 00111+1 = 01000 补 01011

实现

用 p=(num & -num) 即可找到 右起第一次出现1的位置

#include<cstdio>
#include<algorithm>
using namespace std;
int getans(int cmp,int n){
   int frist=(cmp & -cmp);
   int t=cmp+frist;
   int next=(((t^cmp)>>2)/frist)|t;
   if((1<<n)<next) return 0;
   return next;
}
int main(){
    freopen("combination.in","r",stdin);
    freopen("combination.out","w",stdout);
   int n,m;
   scanf("%d%d",&n,&m);
   if(m==0) {
        printf("\n");
    return 0;
   }
int   cmp=(1<<m)-1;
   do{
   for (int i=0;i<n;i++)
       if((cmp&(1<<i))>0) printf("%d",i+1);
       printf("\n");
   }while(cmp=getans(cmp,n));
return 0;
}

 

位运算

标签:blog   获得   turn   nbsp   std   using   while   pac   依次   

原文地址:http://www.cnblogs.com/lmjer/p/8097691.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!