题解 | #整数与IP地址间的转换#

整数与IP地址间的转换

https://www.nowcoder.com/practice/66ca0e28f90c42a196afd78cc9c496ea

#include <cstdio>
#include <iostream>
#include <ostream>
#include <string>
#include <vector>
#include <cmath>
using namespace std;

unsigned int toDecimal(vector<int>& ipAddress){
    unsigned int res = 0;
    for(int i= 0; i < ipAddress.size(); ++i){
        res += ipAddress[i] * pow(2, 24-8*i);
    }
    return res;
}

string toIPAddress(unsigned int decimal){
    vector<unsigned int> tmp(4, 0);
    for(int i = 3; i >= 0; --i){
        tmp[i] = decimal & 0xff;
        decimal >>= 8;
    }
    string res;
    for(unsigned int i : tmp){
        res += to_string(i) + '.';
    }
    res.erase(res.size()-1);
    return res;
}

int main(int argc, char* argv[]){
    vector<int> ipAddress(4, 0);
    for(int i = 0; i < 4; ++i){
        string str;
        if(i != 3){
            getline(cin, str, '.');
        }
        else{
            getline(cin, str);
        }
        ipAddress[i] = stoi(str);
    }
    unsigned int decimal;
    cin >> decimal;

    cout << toDecimal(ipAddress) << endl;
    cout << toIPAddress(decimal) << endl;

    return 0;
}
全部评论

相关推荐

11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
10-09 00:50
已编辑
长江大学 算法工程师
不期而遇的夏天:1.同学你面试评价不错,概率很大,请耐心等待;2.你的排名比较靠前,不要担心,耐心等待;3.问题不大,正在审批,不要着急签其他公司,等等我们!4.预计9月中下旬,安心过节;5.下周会有结果,请耐心等待下;6.可能国庆节前后,一有结果我马上通知你;7.预计10月中旬,再坚持一下;8.正在走流程,就这两天了;9.同学,结果我也不知道,你如果查到了也告诉我一声;10.同学你出线不明朗,建议签其他公司保底!11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务