# c语言-数据结构 **Repository Path**: porridgez/c-language---data-structure ## Basic Information - **Project Name**: c语言-数据结构 - **Description**: 练习一下数据结构 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 数据结构学习——C语言版本 #### 1、链表实现(带表头) `link_list.c`中是单链表的操作:基本的初始化、增加、删除操作。 #### 2、双链表(带表头)