题解 | #进制转换#

进制转换

https://www.nowcoder.com/practice/0337e32b1e5543a19fa380e36d9343d7

#include <iostream>
#include <ostream>
#include <cstring>
using namespace std;

void div2(char* data) {             //将用字符串表示的非负整数data除以2
    int remainder = 0;              //余数
    char* quotient = new char[100]; //商
    for (int i = 0; i < strlen(data); i++) {
        quotient[i] = (data[i] - '0' + remainder * 10) / 2 + '0';
        remainder = (data[i] - '0') % 2;
    }
    if (quotient[0] == '0' && strcmp(quotient, "0")) {
        quotient++;
    }
    strcpy(data, quotient);
}

int main() {
    char* a = new char[100];        //存放输入的数据
    int* stack = new int[1000];     //数字栈,用于存放转换成的二进制数
    int top;                        //栈顶指针
    while (cin >> a) {
        top = 0;                    //栈顶指针置零
        if (!strcmp(a, "0")) {      //a == 0
            cout << 0 << endl;
            continue;
        }
        while (strcmp(a, "0")) {                    //a != 0
            int len = strlen(a);
            stack[top++] = (a[len - 1] - '0') % 2;  //余数(a % 2)入栈
            div2(a);                                //a = a / 2
        }
        while (top != 0) {
            cout << stack[--top];                   //余数依次出栈并输出
        }
        cout << endl;
    }
}

#进制转换##大数除法#
全部评论

相关推荐

二十岁的编程男神王大...:读博吧兄弟,你这绩点太好了,何必转码,另外哈哈哈真见到有括号标出来985的,这个不标注也知道吧
点赞 评论 收藏
分享
04-02 10:09
门头沟学院 Java
用微笑面对困难:这里面问题还是很多的,我也不清楚为啥大家会感觉没啥问题。首先就是全栈开发实习9个月的内容都没有java实习生的内容多,1整个技术栈没看出太核心和难点的内容,感觉好像被拉过去打杂了,而且全栈基本上很容易被毙。里面能问的bug是在太多了比如L:继承 BaseMapper 可直接使用内置方法’。请问你的 BaseMapper 是如何扫描实体类注解如果瞬时产生 100 个上传任务,MySQL 的索引设计是否会有瓶颈?你做过分库分表或者索引优化吗?全栈的内容可以针对动态难点去搞,技能特长写在下面吧,你写了这么多技能,项目和实习体现了多少?你可以在项目里多做文章然后把这个放下去,从大致来看实习不算太水,有含金量你也要写上内容针对哨兵里面的节点变化能问出一万个问题,这个很容易就爆了。
提前批简历挂麻了怎么办
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务