An open API service indexing awesome lists of open source software.

https://github.com/acbin/ds-and-algorithms

✨ Data Structure and Algorithms.
https://github.com/acbin/ds-and-algorithms

algorithm cpp

Last synced: 9 months ago
JSON representation

✨ Data Structure and Algorithms.

Awesome Lists containing this project

README

          

# DS & Algorithms

> Data structure, must not be missed.

数据结构的本质在于:如何将现实世界中各种各样的数据放入到内存中,并且如何在内存中操作这些数据,如何评价这些存储方案和操作方法。

## 数据结构中重要的几个概念和算法
- 算法效率的度量和存储空间需求
- 线性表
- 循环链表与双向链表
- 栈的表示与实现
- 队列
- 串
- 广义表
- 树、二叉树及树的遍历
- 图及图的遍历
- 查找算法:顺序查找、二分法、哈希
- 排序:插入排序、快速排序、选择排序、归并排序等
- 顺序文件、索引文件