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

整数与IP地址间的转换

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

#include <iostream>
#include <bitset>
#include <string>
#include <vector>
using namespace std;

int main() {
    string ip;
    getline(cin,ip);
    string longip;
    getline(cin,longip);

    vector<int> ippart(4,0);
    for(int i = 0;i!=3;++i)
    {
        ippart[i] = stoi(ip.substr(0,ip.find('.')));
        ip = ip.substr(ip.find('.')+1,ip.size());
    }
    ippart[3] = stoi(ip);
    string bi = "";
    for(auto i:ippart)
    {
        bitset<8> b(i);
        bi+=b.to_string();
    }
    bitset<32> k(bi);
    cout<<k.to_ullong()<<endl;

    k = bitset<32>(stoll(longip));
    bi = k.to_string();
    for(int i = 0;i!=4;++i)
    {
        bitset<8> b(bi.substr(i*8,8));
        if(i!=3)
            cout<<b.to_ullong()<<".";
        else
            cout<<b.to_ulong();
    }

    return 0;
}
// 64 位输出请用 printf("%lld")

有一个trick,就是int的范围很小,所以要用stoll

全部评论

相关推荐

产品经理傅立叶:1.建议把个人信息码一下 2.简历的排版还得优化一下,看上去有点乱,另外有一个实习经历实习时间好像多写了一个; 3.实习产出要量化
点赞 评论 收藏
分享
2024-11-15 19:28
已编辑
蚌埠坦克学院 硬件开发
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务