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

整数与IP地址间的转换

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

ip转整数,可以自己写个函数根据“.”分割,也可以直接用scanf函数。
然后用c语言的移位运算就很简单了。
#include "stdio.h"
#include "string.h"

unsigned int ip_to_uint(char* in_put) {
    char* p = in_put;
    int len = strlen(p);
    char tmp_str[32] = {0};

    if (len < 7) {
        return 0;
    }
    int a, b, c, d = 0;
    a = atoi(p);

    p = strchr(p, '.');
    if (p) {
        p++;
    } else {
        return 0;
    }
    b = atoi(p);

    p = strchr(p, '.');
    if (p) {
        p++;
    } else {
        return 0;
    }
    c = atoi(p);

    p = strchr(p, '.');
    if (p) {
        p++;
    } else {
        return 0;
    }
    d = atoi(p);

    snprintf(tmp_str, sizeof(tmp_str), "%d.%d.%d.%d", a, b, c, d);
    if (strcmp(in_put, tmp_str) != 0) {
        return 0;
    }
    return (a << 24 | b << 16 | c << 8 | d);
}


int main(void) {
    int i;
    int num = 0;
    char ip[16] = {0};
    char ip_int_str[16] = {0};
    int a, b, c, d;
//    scanf("%s", ip);
    scanf("%d.%d.%d.%d", &a, &b, &c, &d);
    scanf("%s", ip_int_str);
//    printf("%u\n", ip_to_uint(ip));

    printf("%u\n", a << 24 | b << 16 | c << 8 | d);
    unsigned int ip_int = strtol(ip_int_str, NULL, 10);
    printf("%d.%d.%d.%d", ip_int >> 24 & 0xff, ip_int >> 16 & 0xff,
           ip_int >> 8 & 0xff, ip_int & 0xff);
    return 0;
}



全部评论

相关推荐

10-27 17:26
东北大学 Java
点赞 评论 收藏
分享
09-30 20:49
湖南工学院 Java
SP小夜:举报了哥,你什么都没做错,全怪我那令人作呕的嫉妒和卑微的自尊心,看见你的文字我完全破防了,我直接丢盔弃甲了,看见你这图的那一秒,我满头大汗,浑身发冷,亿郁症瞬间发作了,生活仿佛没了颜色,像是被抓住尾巴的赛亚人,带着海楼石的能力者,抽离尾兽的人柱力,像是没了光的奥特曼,彻底断绝了生的希望。我几乎都快羡慕得疯了,倒在床上蒙住被子就开始抱着枕头尖叫流泪,嘴里一边喊着卧槽卧槽,一边又忍着,我边发边哭,打字的手都是抖的,后来我的手抖得越来越厉害,从心头涌起的思想、情怀和梦想,这份歆羡和悔恨交织在一起,我的笑还挂在脸上,可是眼泪一下子就掉下来了。求你了别发了,我生活再难再穷我都不会觉得难过,只有你们发这种东西的时候,我的心里像被刀割一样的痛,打着字泪水就忍不住的往下流。每天早上7点起床晚上9点睡觉,年复一年地学到现在,憧憬着一个月赚上万块的幸福生活,憧憬着美好阳光的未来。我打开了手机,看到你的图,我感到了深深的差距,我直接跳进了家门口的井里。
点赞 评论 收藏
分享
评论
点赞
2
分享
牛客网
牛客企业服务