LeetCode - 67. Add Binary(4ms)

来源:https://www.cnblogs.com/zlian2016/archive/2018/07/31/9398582.html
-Advertisement-
Play Games

Given two binary strings, return their sum (also a binary string). The input strings are both non-empty and contains only characters 1 or 0. Example 1 ...


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

The input strings are both non-empty and contains only characters 1 or 0.

Example 1:

Input: a = "11", b = "1"
Output: "100"

Example 2:

Input: a = "1010", b = "1011"
Output: "10101"
  1 class Solution {
  2 public:
  3     string addBinary(string a, string b) {
  4         int la = a.length();
  5         int lb = b.length();
  6         string res = "";
  7         int car = 0;
  8         if(la <= lb) {
  9             for(int i = la - 1; i >= 0; i--) {
 10                 if(a[i] == '1' && b[lb - (la - i)] == '1') {
 11                     if(car == 1)
 12                         res = '1' + res;
 13                     else {
 14                         res = '0' + res;
 15                         car = 1;
 16                     }
 17                 }
 18                 else if(a[i] != b[lb - (la - i)]) {
 19                     if(car == 1)
 20                         res = '0' + res;
 21                     else
 22                         res = '1' + res;
 23                 }
 24                 else {
 25                     if(car == 1) {
 26                         res = '1' + res;
 27                         car = 0;
 28                     }
 29                     else
 30                         res = '0' + res;
 31                 }
 32             }
 33             for(int i = lb - la - 1; i >= 0; i--) {
 34                 if(b[i] == '1') {
 35                     if(car == 1)
 36                         res = '0' + res;
 37                     else
 38                         res = '1' + res;
 39                 }
 40                 else {
 41                     if(car == 1) {
 42                         res = '1' + res;
 43                         car = 0;
 44                     }
 45                     else
 46                         res = '0' + res;
 47                 }
 48             }
 49             if(car == 1) {
 50                 res = '1' + res;
 51             }
 52             return res;
 53         }
 54         else if(lb < la) {
 55             for(int i = lb - 1; i >= 0; i--) {
 56                 if(b[i] == '1' && a[la - (lb - i)] == '1') {
 57                     if(car == 1)
 58                         res = '1' + res;
 59                     else {
 60                         res = '0' + res;
 61                         car = 1;
 62                     }
 63                 }
 64                 else if(b[i] != a[la - (lb - i)]) {
 65                     if(car == 1)
 66                         res = '0' + res;
 67                     else
 68                         res = '1' + res;
 69                 }
 70                 else {
 71                     if(car == 1) {
 72                         res = '1' + res;
 73                         car = 0;
 74                     }
 75                     else
 76                         res = '0' + res;
 77                 }
 78             }
 79             for(int i = la - lb - 1; i >= 0; i--) {
 80                 if(a[i] == '1') {
 81                     if(car == 1)
 82                         res = '0' + res;
 83                     else
 84                         res = '1' + res;
 85                 }
 86                 else {
 87                     if(car == 1) {
 88                         res = '1' + res;
 89                         car = 0;
 90                     }
 91                     else
 92                         res = '0' + res;
 93                 }
 94             }
 95             if(car == 1) {
 96                 res = '1' + res;
 97             }
 98             return res;
 99         }
100     }
101 };

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.0 新建運行環境 命令: pyvip@Vip:~$ mkvirtualenv -p /usr/bin/python3 Django2Running virtualenv with interpreter /usr/bin/python3Using base prefix '/usr'New py ...
  • 作者: "Jack47, ZhiYan" 轉載請保留作者和 "原文出處" 性能優化,優化的東西一定得在主路徑上,結合測量的結果去優化。不然即使性能再好,邏輯相對而言執行不了幾次,其實對提示性能的影響微乎其微。記得抖哥以前說多隆在幫忙查廣告搜索引擎的問題,看到了一處代碼,激動的說這裡用他的辦法,性能可 ...
  • if的使用 if 後面接的是表達式 如果 if後面的表達式能成立,就會把 if和 endif之間的代碼編譯進去 if defined的使用 如果x這個巨集又被定義過,則把 if和 endif之間的代碼編譯進去 註意點 1. 兩個都只是用來決定某段代碼是否被編譯 2. 記得加 endif ...
  • 綠茶網貸系統是綠茶科技旗下自主開發的網貸系統,可以支持定製p2p網貸網站,網貸平臺網站開發,小額貸系統,現金網貸系統開發,小貸網站開發建設,p2p貸款網站程式,微信網貸網站源碼,這是一套網貸網站管理系統。可以支持定製電腦版+手機版+微信版+小程式版+APP版,由10年的技術團隊專業定製,需要的朋友可 ...
  • title: 網路流 date: 2018 07 31 22:01:22 tags: acm 演算法 網路流 概述 這篇博客主要是關於網路流的一些基本的知識點以及相應的模板,, 算了,,,還是先貼大佬的博客,,,暑假在補一下。。。。QAQ <! more 網路流 tan90,,,,,,, 習題 Pro ...
  • You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you cl ...
  • 就像有知覺的生物一樣,程式必須在執行的過程中控制它的世界,並做出選擇。java使用執行流程式控制制語句做出選擇。 1、選擇語句 if switch in從case中無法匹配到,如果有default會執行,default可以在任何位置;如果default後無break,會繼續向下執行,否則跳出。 2、迴圈 ...
  • 1. Win7下安裝CodeBlocks: 下載帶有mingw的CodeBlocks:http://www.codeblocks.org/downloads/26#windows 運行所下載程式: 點擊next : 同意安裝協議,點擊 I agree : 選擇預設完全安裝,點擊next : 選擇安裝 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...