Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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库

Awesome Lists containing this project

README

        

# data-structure
类STL数据结构库

虽然STL标准库中都提供相关功能,但是自己实现一遍更能理解其中高明之处,本仓库包含如下实现

- String 字符串
- Array 动态数组(STL vector)
- List 链表 (单链表,双向链表,环形链表)
- Queue 队列
- Stack 栈
- Tree 树(通用树,二叉树)
- Graph 图
- SmartPointer 智能指针(SharedPointer ScopedPointer)
- 常用排序算法
- ...