Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
371 views
in Technique[技术] by (71.8m points)

C Check duplicate string entries

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..

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
#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='';
    strcpy(path, str);
    printf("%s
", path);// /proc/proc hello/foo
    printf("%s
", pid);// 4000

    return 0;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...