• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






竹林灯火

很失败的退役了!!!
 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2016年7月22日

大数模板——六种实现了加减乘除和求余
摘要: 六种实现了加减乘除和求余 1、大数加法 string add(string a,string b) { string c; int len1=a.length(); int len2=b.length(); int len=max(len1,len2); for(int i=len1;i<len;i 阅读全文
posted @ 2016-07-22 15:45 竹林灯火 阅读(1424) 评论(0) 推荐(1)
 
HDU 1002 A + B Problem II
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1002 A + B Problem II Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)T 阅读全文
posted @ 2016-07-22 15:23 竹林灯火 阅读(157) 评论(0) 推荐(0)