码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode-1028 Convert to Base -2(负二进制转换)

时间:2019-03-31 14:14:26      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:pre   pop   进制   bsp   ==   ase   code   string   二进制   

 1 class Solution
 2 {
 3     public:
 4         string baseNeg2(int N)
 5         {
 6             string ss;
 7             int  n = N;
 8             stack<int> s;
 9             int a;
10             if(n == 0)
11                 return "0";
12             else
13             {
14                 while(n!=0)
15                 {
16                     a = abs(n%(-2));
17                     s.push(a);
18                     n = (n-a) / (-2);
19                 }
20             }
21             while(!s.empty())
22             {
23                 ss+=s.top()+0;
24                 s.pop();
25             }
26             return ss;
27         }
28 };

 

Leetcode-1028 Convert to Base -2(负二进制转换)

标签:pre   pop   进制   bsp   ==   ase   code   string   二进制   

原文地址:https://www.cnblogs.com/Asurudo/p/10630804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!