博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Add Binary
阅读量:5272 次
发布时间:2019-06-14

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

Given two binary strings, return their sum (also a binary string).

For example,

a = "11"
b = "1"
Return "100".

1 import java.util.Stack; 2  3  4 public class Solution { 5     public static String addBinary(String a, String b) { 6     Stack
st=new Stack(); 7 int lena=a.length();int lenb=b.length(); 8 String comp=""; 9 for(int i=0;i
=0;i--){15 char x=a.charAt(i);char y=b.charAt(i);16 int res=x-'0'+y-'0'+jin;17 if(res>=2){jin=1;res-=2;}18 else{jin=0;}19 st.add(res);20 }21 if(jin==1){st.add(jin);}22 String t="";23 while(!st.isEmpty()){24 t+=st.pop();25 }26 return t;27 }28 public static void main(String[]args){29 System.out.println(addBinary("110","11"));30 }31 }

 

转载于:https://www.cnblogs.com/qq1029579233/p/4480782.html

你可能感兴趣的文章
Linux误删恢复
查看>>
Unity调用Windows窗口句柄,选择文件和目录
查看>>
HashMap循环遍历方式
查看>>
React Native 入门 调试项目
查看>>
C# 通过 Quartz .NET 实现 schedule job 的处理
查看>>
关于java之socket输入流输出流可否放在不同的线程里进行处理
查看>>
目前为止用过的最好的Json互转工具类ConvertJson
查看>>
JavaScript的学习要点
查看>>
Day13
查看>>
tensorflow saver简介+Demo with linear-model
查看>>
Luogu_4103 [HEOI2014]大工程
查看>>
Oracle——SQL基础
查看>>
项目置顶随笔
查看>>
Redis的安装与使用
查看>>
P1970 花匠
查看>>
java语言与java技术
查看>>
NOIP2016提高A组五校联考2总结
查看>>
iOS 项目的编译速度提高
查看>>
table中checkbox选择多行
查看>>
动态链接库
查看>>