# DSA **Repository Path**: xun963/DSA ## Basic Information - **Project Name**: DSA - **Description**: 数据结构与算法 Data Structure And Algorithm - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 数据结构与算法 * 性能指标 - [时间空间复杂度](https://github.com/SkyYongFly/DSA/blob/master/note/complexity/complexity.md) * 数据机构 - [数组](https://github.com/SkyYongFly/DSA/blob/master/note/array/array.md) - [链表](https://github.com/SkyYongFly/DSA/blob/master/note/list/list.md) - [栈](https://github.com/SkyYongFly/DSA/blob/master/note/stack/stack.md) - [队列](https://github.com/SkyYongFly/DSA/tree/master/note/queue) - [跳表](https://github.com/SkyYongFly/DSA/blob/master/note/skipList/skiplist.md) - [散列表](https://github.com/SkyYongFly/DSA/blob/master/note/hashTable/hashTable.md) - [树](https://github.com/SkyYongFly/DSA/blob/master/note/tree/tree.md) - [堆](https://github.com/SkyYongFly/DSA/blob/master/note/heap/heap.md) - [图](https://github.com/SkyYongFly/DSA/blob/master/note/graph/graph.md) * 算法 - [递归](https://github.com/SkyYongFly/DSA/blob/master/note/recursion/recursion.md) - [排序](https://github.com/SkyYongFly/DSA/blob/master/note/sort/sort.md) - [查找](https://github.com/SkyYongFly/DSA/blob/master/note/search/search.md) - [哈希](https://github.com/SkyYongFly/DSA/blob/master/note/hash/hash.md) - [字符串](https://github.com/SkyYongFly/DSA/blob/master/note/string/String.md) * 算法思想 - [分治](https://github.com/SkyYongFly/DSA/blob/master/note/idea/DivideAndConquer.md) - [贪心](https://github.com/SkyYongFly/DSA/blob/master/note/idea/GreedyAlgorithm.md) - [回溯](https://github.com/SkyYongFly/DSA/blob/master/note/idea/BacktrackingAlgorithm.md) - [动态规划](https://github.com/SkyYongFly/DSA/blob/master/note/idea/DynamicProgramming.md)