docs: Fix SKILL.md规范 violations - Remove ## 方法列表 and flatten ### sub-headers in ## 公共方法

This commit is contained in:
2026-03-19 02:01:18 +08:00
parent 8e85fd98b8
commit 5257f3d75c
68 changed files with 718 additions and 1289 deletions

View File

@@ -28,52 +28,20 @@
## 公共方法
### 构造/析构
| 方法 | 描述 |
|------|------|
| [Constructor](constructor.md) | 构造哈希表实例 |
| [Destructor](destructor.md) | 析构函数 |
| [operator=](operator-assign.md) | 赋值运算符 |
| [Copy/Move](copy-move.md) | 拷贝/移动构造 |
### 元素访问
| 方法 | 描述 |
|------|------|
| [operator[]](./operator-subscript.md) | 下标访问(不存在时插入) |
### 查找
| 方法 | 描述 |
|------|------|
| [operator[]](operator-subscript.md) | 下标访问(不存在时插入) |
| [Find](find.md) | 查找键对应的值指针 |
| [Contains](contains.md) | 检查是否包含键 |
### 插入/删除
| 方法 | 描述 |
|------|------|
| [Insert](insert.md) | 插入键值对 |
| [Erase](erase.md) | 删除键对应的元素 |
| [Clear](clear.md) | 清空所有元素 |
### 容量
| 方法 | 描述 |
|------|------|
| [Size/Empty](size.md) | 获取元素数量 |
### 迭代器
| 方法 | 描述 |
|------|------|
| [begin/end](iterator.md) | 获取迭代器 |
### 内存分配器
| 方法 | 描述 |
|------|------|
| [SetAllocator](setallocator.md) | 设置内存分配器 |
## 使用示例