# data-struct-study **Repository Path**: michael_linux/data-struct-study ## Basic Information - **Project Name**: data-struct-study - **Description**: 数据结构与算法c语言学习代码编写。 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-10 - **Last Updated**: 2023-03-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 1 线性表 ## 1.1 顺序表 sqlist.c sqlist.h sqlistTest.c ## 1.2 链表 linklist.c linklist.h linklistTest.c # 2 栈 ## 2.1 顺序栈 ## 2.2 链式栈 # 3 队列 ## 3.1 顺序队列 ## 3.2 链式队列 # 4 二叉树 # 5 哈希表 # 6 排序