★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公衆號:山青詠芝(shanqingyongzhi)
➤博客園地址:山青詠芝(https://www.cnblogs.com/strengthen/)
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址: http://www.javashuo.com/article/p-nlharqkv-md.html
➤若是連接不是山青詠芝的博客園地址,則多是爬取做者的文章。
➤原文已修改更新!強烈建議點擊原文地址閱讀!支持做者!支持原創!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★html
Given a number N
, return a string consisting of "0"
s and "1"
s that represents its value in base -2
(negative two).git
The returned string must have no leading zeroes, unless the string is "0"
. github
Example 1:微信
Input: 2
Output: "110" Explantion: (-2) ^ 2 + (-2) ^ 1 = 2
Example 2:app
Input: 3
Output: "111" Explantion: (-2) ^ 2 + (-2) ^ 1 + (-2) ^ 0 = 3
Example 3:less
Input: 4
Output: "100" Explantion: (-2) ^ 2 = 4
Note:spa
0 <= N <= 10^9
給出數字 N
,返回由若干 "0"
和 "1"
組成的字符串,該字符串爲 N
的負二進制(base -2
)表示。code
除非字符串就是 "0"
,不然返回的字符串中不能含有前導零。 htm
示例 1:blog
輸入:2 輸出:"110" 解釋:(-2) ^ 2 + (-2) ^ 1 = 2
示例 2:
輸入:3 輸出:"111" 解釋:(-2) ^ 2 + (-2) ^ 1 + (-2) ^ 0 = 3
示例 3:
輸入:4 輸出:"100" 解釋:(-2) ^ 2 = 4
提示:
0 <= N <= 10^9
1 class Solution { 2 func baseNeg2(_ N: Int) -> String { 3 var num = N 4 var str = "" 5 var base = -2 6 while num < 0 || num >= 2 { 7 var q = Int(num / base) 8 if num < 0, num % base != 0 { q += 1 } 9 str = "\((num - q * base))\(str)" 10 num = q 11 } 12 if num != 0 { 13 str = "\(num)\(str)" 14 } 15 if str.isEmpty { 16 str = "0" 17 } 18 return str 19 } 20 }
1 class Solution { 2 func baseNeg2(_ N: Int) -> String { 3 var N = N 4 var ans:String = String() 5 while(N != 0) 6 { 7 var r:Int = abs(N % 2) 8 if r != 0 { N -= 1} 9 var q:Int = N / -2 10 ans.append((r + 48).ASCII) 11 N = q 12 } 13 ans = String(ans.reversed()) 14 if ans.isEmpty 15 { 16 ans.append("0") 17 } 18 return ans 19 } 20 } 21 22 //Int擴展 23 extension Int 24 { 25 //Int轉Character,ASCII值(定義大寫爲字符值) 26 var ASCII:Character 27 { 28 get {return Character(UnicodeScalar(self)!)} 29 } 30 }