摘要:
【更新说明】2012-4-22:更新了slist.c中的slist_delete函数实现。【描述】仿照《系统程序员成长计划》通用双链表,写的一个通用单链表。如有错误,欢迎指正。【清单】slist.h#ifndef __SLIST_H__#define __SLIST_H__#ifdef __cplusplusextern "C" {#endifstruct SListNode;struct _SList;typedef struct _SList SList;typedef enum _SListRet{ SLIST_RET_OK, SLIST_RET_ERR_CREATE 阅读全文