博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用单链表实现一个模糊搜索, 待补充
阅读量:6111 次
发布时间:2019-06-21

本文共 1243 字,大约阅读时间需要 4 分钟。

 

 

#include 
#include
#include
typedef struct node_s{ char *data; struct node_s *next;}node_t;node_t *create(){ node_t *p = calloc(1, sizeof(node_t)); return p;}int insert(node_t *head, const char *data){ node_t *new = create(); if(!new){ return -1; } new->data = strdup(data); new->next = head->next; head->next = new; return 0;}int clear(node_t *head){ node_t *p_next; if(!head){ return -1; } while(head->next != NULL){ p_next = head->next; if(head->data){ free(head->data); } free(head); head=p_next; } return 0;}#define foreach(head, a_unit) \ for(head = head->next, a_unit = head; head != NULL; head = head->next, a_unit = head)int main(){ node_t *head = create(); insert(head, "a"); insert(head, "b"); insert(head, "c"); node_t *a_unit; foreach(head, a_unit){ printf("%s\n", a_unit->data); } clear(head);}

 

转载于:https://www.cnblogs.com/bai-jimmy/p/5463218.html

你可能感兴趣的文章
【转】php字符串加密解密
查看>>
22. linux 常用命令
查看>>
ASP.Net 使用GridView模板删除一行的用法
查看>>
(十六)字段表集合
查看>>
JPGraph
查看>>
实验二 Java面向对象程序设计
查看>>
------__________________________9余数定理-__________ 1163______________
查看>>
webapp返回上一页 处理
查看>>
新安装的WAMP中phpmyadmin的密码问题
查看>>
20172303 2017-2018-2 《程序设计与数据结构》第5周学习总结
查看>>
(转)HTML的代码(从朋友那转的,看着觉得会有用就转了)
查看>>
eclipse中将一个项目作为library导入另一个项目中
查看>>
Go语言学习(五)----- 数组
查看>>
Android源码学习之观察者模式应用
查看>>
Content Provider的权限
查看>>
416. Partition Equal Subset Sum
查看>>
centos7.0 64位系统安装 nginx
查看>>
数据库运维平台~自动化上线审核需求
查看>>
注解开发
查看>>
如何用 Robotframework 来编写优秀的测试用例
查看>>