• [Swift]LeetCode1009. 十进制整数的补码 | Complement of Base 10 Integer


    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
    ➤微信公众号:山青咏芝(shanqingyongzhi)
    ➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
    ➤GitHub地址:https://github.com/strengthen/LeetCode
    ➤原文地址: https://www.cnblogs.com/strengthen/p/10546205.html 
    ➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
    ➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

    Every non-negative integer N has a binary representation.  For example, 5 can be represented as "101" in binary, 11 as "1011" in binary, and so on.  Note that except for N = 0, there are no leading zeroes in any binary representation.

    The complement of a binary representation is the number in binary you get when changing every 1 to a 0and 0 to a 1.  For example, the complement of "101" in binary is "010" in binary.

    For a given number N in base-10, return the complement of it's binary representation as a base-10 integer.

    Example 1:

    Input: 5
    Output: 2
    Explanation: 5 is "101" in binary, with complement "010" in binary, which is 2 in base-10.
    

    Example 2:

    Input: 7
    Output: 0
    Explanation: 7 is "111" in binary, with complement "000" in binary, which is 0 in base-10.
    

    Example 3:

    Input: 10
    Output: 5
    Explanation: 10 is "1010" in binary, with complement "0101" in binary, which is 5 in base-10.

    Note:

    1. 0 <= N < 10^9

    每个非负整数 N 都有其二进制表示。例如, 5 可以被表示为二进制 "101"11 可以用二进制 "1011" 表示,依此类推。注意,除 N = 0 外,任何二进制表示中都不含前导零。

    二进制的补码表示是将每个 1 改为 0 且每个 0 变为 1。例如,二进制数 "101" 的二进制补码为 "010"

    给定十进制数 N,返回其二进制表示的补码所对应的十进制整数。

    示例 1:

    输入:5
    输出:2
    解释:5 的二进制表示为 "101",其二进制补码为 "010",也就是十进制中的 2 。
    

    示例 2:

    输入:7
    输出:0
    解释:7 的二进制表示为 "111",其二进制补码为 "000",也就是十进制中的 0 。
    

    示例 3:

    输入:10
    输出:5
    解释:10 的二进制表示为 "1010",其二进制补码为 "0101",也就是十进制中的 5 。 

    提示:

    1. 0 <= N < 10^9

    Runtime: 4 ms
    Memory Usage: 19 MB
     1 class Solution {
     2     func bitwiseComplement(_ N: Int) -> Int {
     3         var N = N
     4         var bits:[Int] = [Int]()
     5         repeat{
     6             bits.append(N % 2)
     7             N /= 2            
     8         }while(N != 0)
     9         for i in 0..<bits.count
    10         {
    11             bits[i] = 1 - bits[i]
    12         }
    13         var val:Int = 0
    14         var p:Int = 1
    15         for i in 0..<bits.count
    16         {
    17             val += p * bits[i]
    18             p *= 2
    19         } 
    20         return val        
    21     }
    22 }

    4ms
    1 class Solution {
    2     func bitwiseComplement(_ N: Int) -> Int {
    3         var c = 1
    4         while c < N {
    5             c = (c << 1) | 1
    6         }
    7         return N ^ c        
    8     }
    9 }

    Runtime: 8 ms

    Memory Usage: 18.9 MB
     1 class Solution {
     2     func bitwiseComplement(_ N: Int) -> Int {
     3         var arrInt:[Int] = String(N,radix:2).map{Int(String($0))!}
     4         for i in 0..<arrInt.count
     5         {
     6             arrInt[i] = 1 - arrInt[i]         
     7         }
     8         return String(arrInt.map{Character(String($0))}).BinaryToDecimal()        
     9     }
    10 }
    11 extension String{
    12    func BinaryToDecimal() -> Int {    
    13        var sum:Int = 0
    14        for c in self.characters {
    15            if let number = Int(String(c))
    16            {
    17                sum = sum * 2 + number
    18            }        
    19        }
    20        return sum   
    21    }
    22 }
  • 相关阅读:
    强烈免费25款商务logo设计模板 java程序员
    16个帮助你高效测试响应式设计界面的工具 java程序员
    一个帮助你生成iOS文件夹效果的jQuery插件 AppFolders java程序员
    Linq 实现左连接,右连接 java程序员
    一个帮助你实现pinterest页面布局的jQuery插件 jQuery.Shapeshift java程序员
    基于HTML5实现的超酷摄像头(HTML5 webcam)拍照功能 photobooth.js java程序员
    30个让你保持好身材的iphone健康应用程序 java程序员
    一个实体对象不能由多个 IEntityChangeTracker 实例引用 解决办法 java程序员
    2012年十一月GBin1 web技术热点荟萃 java程序员
    超棒的20款javascript工具提示条(tooltips)类库 java程序员
  • 原文地址:https://www.cnblogs.com/strengthen/p/10546205.html
Copyright © 2020-2023  润新知