用单链表实现一个模糊搜索, 待补充

    #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
相关文章
相关标签/搜索