Skip to content

Commit

Permalink
feat(readme): update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
1nchy committed Jan 13, 2023
1 parent c3dc71d commit d7cb9d7
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,37 @@
# data-structure_cpp
a rough imitation of @stl

现在暂时只是粗糙实现了 list 和 vector,并简单实现了一下上述两个容器对应的(正向)迭代器
目前主要实现了 stl 中的部分类型萃取和部分容器,后者包括数据结构本身以及测试类。

已实现的容器包括序列容器和关系容器:

- 序列容器

list vector deque

- 关系容器

红黑树 哈希表 (以及基于上述俩数据结构实现的各种 map 和 set)

容器测试类包括序列容器测试类和关系容器测试类,注册对应函数后,即可进行控制台式的使用或自动随机测试。

~~~c++
// 容器测试类举例
int main(void) {
using _Container = asp::ordered_map<int, int>;
// 序列容器应该使用 debug_seq_container 类
asp::debug_asso_container<_Container> ad;
// 手动注册对应函数
ad._insert = &_Container::insert;
ad._erase = &_Container::erase;
ad._count = &_Container::count;
ad._find = &_Container::find;

// 容器结构完整性验证,可选的
ad._check = &_Container::check;

ad.demo(); // 终端模式
// ad.auto_test("a 1 d 1"); // 自动化测试(可自定义操作序列)
return 0;
}
~~~

0 comments on commit d7cb9d7

Please sign in to comment.