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

bitset实现位压加法

时间:2020-06-23 11:39:02      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:line   string   lin   int   type   code   space   bsp   span   

 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<algorithm>
 4 using namespace std;
 5 typedef bitset<10000> bint;
 6 inline bint plus(bint a,bint b){
 7     return b.any()?plus(a^b,(a&b)<<1):a;
 8 }
 9 inline bint mul(bint a,bint b){
10     return b.any()?(b[0]?plus(a,mul(a<<1,b>>1)):mul(a<<1,b>>1)):0;
11 }
12 int main(){}

 

bitset实现位压加法

标签:line   string   lin   int   type   code   space   bsp   span   

原文地址:https://www.cnblogs.com/tak-fate/p/13181170.html

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