博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode--二进制求和(AddBinary)--java
阅读量:4284 次
发布时间:2019-05-27

本文共 1169 字,大约阅读时间需要 3 分钟。

在这里插入图片描述

package leetcode;/* Given two binary strings, return their sum (also a binary string). * For example, * a = "11" * b = "1" * Return "100". */import java.lang.Math;public class AddBinary {
public String addBinary(String a, String b) {
if (a == null || a.length() == 0) //如果a为空,则返回b;反之则返回a return b; if (b == null || b.length() == 0) return a; int i = a.length() - 1; //获取a,b的长 int j = b.length() - 1; int carry = 0; //进位标志,初始化为0 StringBuilder res = new StringBuilder(); while (i >= 0 && j >= 0) {
// a,b都不为空时,从后往前遍历,从低位开始相加 int digit = (int) (a.charAt(i) - '0' + b.charAt(j) - '0') + carry; carry = digit / 2; //保存下一个carry位:逢2进位 digit %= 2; //取余,保存当前位(进位后)的值 res.insert(0, digit); //插入到res中 i--; j--; } //a更长时,处理a余下的数位 while (i >= 0) {
int digit = (int) (a.charAt(i) - '0') + carry; carry = digit / 2; digit %= 2; res.insert(0, digit); i--; } //b更长时,处理b余下的数位 while (j >= 0) {
int digit = (int) (b.charAt(j) - '0') + carry; carry = digit / 2; digit %= 2; res.insert(0, digit); j--; } //加完之后,第一位也需进位 if (carry > 0) {
res.insert(0, carry); } return res.toString(); }}

转载地址:http://cidgi.baihongyu.com/

你可能感兴趣的文章
OK6410A 开发板 (三) 13 u-boot-2021.01 boot 解析 SPL 镜像运行部分 boot 详细解析
查看>>
OK6410A 开发板 (三) 13 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 boot 详细解析2 relocate_vectors
查看>>
OK6410A 开发板 (三) 14 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 boot 详细解析3 relocate_code
查看>>
OK6410A 开发板 (三) 15 u-boot-2021.01 boot 解析 U-boot 镜像编译部分 Makefile解析
查看>>
OK6410A 开发板 (三) 16 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 irq
查看>>
OK6410A 开发板 (三) 17 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 串口
查看>>
OK6410A 开发板 (三) 18 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 env
查看>>
OK6410A 开发板 (三) 19 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 driver model
查看>>
OK6410A 开发板 (三) A u-boot-2021.01 OK6410A 文章整理
查看>>
OK6410A 开发板 (三) 20 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 system clock
查看>>
OK6410A 开发板 (三) 21 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 standalone
查看>>
OK6410A 开发板 (三) 22 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 malloc
查看>>
OK6410A 开发板 (三) 23 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 DM 的一次实例分析 - 串口
查看>>
OK6410A 开发板 (三) 24 u-boot-2021.01 boot 解析 U-boot 镜像运行部分 fs-fat
查看>>
OK6410A 开发板 (三) 25 u-boot-2021.01 boot 解析 U-boot 内存命令 md
查看>>
OK6410A 开发板 (三) 26 u-boot-2021.01 u-boot镜像
查看>>
OK6410A 开发板 (八) A linux-5.11 OK6410A 文章整理
查看>>
OK6410A 开发板 (六) 4 OK6410A linux-5.11 镜像生成过程解析
查看>>
u-boot-2021.01引导linux-5.11(uImage)的过程详解
查看>>
OK6410A 开发板 (八) 1 linux-5.11 OK6410A ethernet dm9000 移植
查看>>