-3

我需要检查我的文件中是否有重复的条目,在 C 中。

示例文件:

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

我需要这样解决:

/proc/proc1 1000 3000
/proc/proc2 2000

路径 (/proc/proc*) 可以包含空格,例如:/proc/proc hello/foo

在这里,我写了一些东西来处理 /proc/ 和他们的 pid,但现在我被困在这个问题上。

4

1 回答 1

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;
}
于 2013-05-19T21:08:57.927 回答