layout codes of SortedSet.h

This commit is contained in:
2024-11-05 00:04:26 +08:00
parent 43bc9af020
commit 6d9bced95c

View File

@@ -6,7 +6,7 @@ namespace hgl
/**
* 有序合集</br>
* 集合数据列表中不允许数据出现重复性,同时它会将数据排序</br>
* 我们删除了批量添加数据的Add函数因为每一次添加数据都会导致一次插入这样效率太低了。我们建议将数据全部添加到List再转换为SortedSets。</br>
* 我们删除了批量添加数据的Add函数因为每一次添加数据都会导致一次插入这样效率太低了。我们建议将数据全部添加到List再转换为SortedSet。</br>
*/
template<typename T> class SortedSet
{