diff --git a/README.md b/README.md index 20da438..ee3faf9 100644 --- a/README.md +++ b/README.md @@ -215,6 +215,7 @@ import stack "github.com/duke-git/lancet/v2/datastructure/stack" import queue "github.com/duke-git/lancet/v2/datastructure/queue" import set "github.com/duke-git/lancet/v2/datastructure/set" import tree "github.com/duke-git/lancet/v2/datastructure/tree" +import heap "github.com/duke-git/lancet/v2/datastructure/heap" ``` #### Function list: - [List](https://github.com/duke-git/lancet/blob/main/docs/datastructure/list.md) @@ -223,6 +224,7 @@ import tree "github.com/duke-git/lancet/v2/datastructure/tree" - [Queue](https://github.com/duke-git/lancet/blob/main/docs/datastructure/queue.md) - [Set](https://github.com/duke-git/lancet/blob/main/docs/datastructure/set.md) - [Tree](https://github.com/duke-git/lancet/blob/main/docs/datastructure/tree.md) +- [Heap](https://github.com/duke-git/lancet/blob/main/docs/datastructure/heap.md) ### 7. Fileutil package implements some basic functions for file operations. diff --git a/README_zh-CN.md b/README_zh-CN.md index 2b9bb07..47c94af 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -213,6 +213,7 @@ import stack "github.com/duke-git/lancet/v2/datastructure/stack" import queue "github.com/duke-git/lancet/v2/datastructure/queue" import set "github.com/duke-git/lancet/v2/datastructure/set" import tree "github.com/duke-git/lancet/v2/datastructure/tree" +import heap "github.com/duke-git/lancet/v2/datastructure/heap" ``` #### Function list: - [List](https://github.com/duke-git/lancet/blob/main/docs/datastructure/list_zh-CN.md) @@ -221,6 +222,7 @@ import tree "github.com/duke-git/lancet/v2/datastructure/tree" - [Queue](https://github.com/duke-git/lancet/blob/main/docs/datastructure/queue_zh-CN.md) - [Set](https://github.com/duke-git/lancet/blob/main/docs/datastructure/set_zh-CN.md) - [Tree](https://github.com/duke-git/lancet/blob/main/docs/datastructure/tree_zh-CN.md) +- [Heap](https://github.com/duke-git/lancet/blob/main/docs/datastructure/heap.md) ### 7. fileutil包支持文件基本操作。