C Check duplicate string entries

不问归期 提交于 2019-12-13 23:06:37

问题


I need to check if in my file there are duplicates entries, in C.

Sample file:

/proc/proc1 1000
/proc/proc2 2000
/proc/proc1 3000

I need to solve like this:

/proc/proc1 1000 3000
/proc/proc2 2000

The path (/proc/proc*) can include spaces likes: /proc/proc hello/foo

Here I wrote something to handle /proc/ and their pids, but now I'm stuck on this problem..


回答1:


#include <stdio.h>
#include <string.h>

int main(void){
    char str[]= "/proc/proc hello/foo 4000";
    char path[256];
    char pid[10];
    char *p;

    p=strrchr(str, ' ');
    strcpy(pid, p+1);
    *p='\0';
    strcpy(path, str);
    printf("%s\n", path);// /proc/proc hello/foo
    printf("%s\n", pid);// 4000

    return 0;
}


来源:https://stackoverflow.com/questions/16638386/c-check-duplicate-string-entries

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!