用單鏈表實現一個模糊搜索, 待補充

    #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct node_s{ char *data; struct node_s *next; }node_t; node_t *create(){ node_t *p = calloc(1, sizeof
相關文章
相關標籤/搜索