Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/allenxuxu/data-structure
C++ 类STL库
https://github.com/allenxuxu/data-structure
cpp-library data-structures
Last synced: 14 days ago
JSON representation
C++ 类STL库
- Host: GitHub
- URL: https://github.com/allenxuxu/data-structure
- Owner: Allenxuxu
- Created: 2017-05-21T07:27:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-28T03:20:05.000Z (over 5 years ago)
- Last Synced: 2024-11-30T10:43:23.962Z (2 months ago)
- Topics: cpp-library, data-structures
- Language: C++
- Homepage:
- Size: 545 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# data-structure
类STL数据结构库虽然STL标准库中都提供相关功能,但是自己实现一遍更能理解其中高明之处,本仓库包含如下实现
- String 字符串
- Array 动态数组(STL vector)
- List 链表 (单链表,双向链表,环形链表)
- Queue 队列
- Stack 栈
- Tree 树(通用树,二叉树)
- Graph 图
- SmartPointer 智能指针(SharedPointer ScopedPointer)
- 常用排序算法
- ...