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.
- Host: GitHub
- URL: https://github.com/acbin/ds-and-algorithms
- Owner: acbin
- License: other
- Created: 2016-10-26T11:01:11.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-03-08T02:06:33.000Z (over 6 years ago)
- Last Synced: 2025-02-01T01:33:45.752Z (10 months ago)
- Topics: algorithm, cpp
- Homepage:
- Size: 764 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DS & Algorithms
> Data structure, must not be missed.
数据结构的本质在于:如何将现实世界中各种各样的数据放入到内存中,并且如何在内存中操作这些数据,如何评价这些存储方案和操作方法。
## 数据结构中重要的几个概念和算法
- 算法效率的度量和存储空间需求
- 线性表
- 循环链表与双向链表
- 栈的表示与实现
- 队列
- 串
- 广义表
- 树、二叉树及树的遍历
- 图及图的遍历
- 查找算法:顺序查找、二分法、哈希
- 排序:插入排序、快速排序、选择排序、归并排序等
- 顺序文件、索引文件