# DataStructure **Repository Path**: debugzt/data-structure ## Basic Information - **Project Name**: DataStructure - **Description**: 实现基本的数据结构 包括线性表链表、队列栈、树、堆 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-11 - **Last Updated**: 2021-08-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: 学习 ## README ##实现基本的数据结构 list: 顺序表 单向链表 双向链表 队列 栈 tree、heap: 二叉排序树 红黑树 堆 堆排序 symbol: 符号表 有序符号表 priority: 最大优先队列 最小优先队列 uf: 并查集 路径压缩 sort: 排序算法 graph:图 有向图 无向图 加权无向图 图的深度搜索 广度搜索 拓扑排序 ##常见问题 链表常见问题: 求中间值 // 判断链表是否有环 // 求有环链表的入口 =》 使用快慢指针