|
@@ -10,6 +10,7 @@
|
|
|
|
|
|
namespace nanxing_extend
|
|
|
{
|
|
|
+ //限定为侵入式链表结构,因为这样方便空间的控制,可以直接在节点类中析构全部的空间
|
|
|
static int count=0;
|
|
|
//错误处理机制
|
|
|
class nextpoint_new:std::exception //skip_node分配空间失败的时候
|
|
@@ -46,7 +47,8 @@ namespace nanxing_extend
|
|
|
too_small,
|
|
|
#endif
|
|
|
fault,
|
|
|
- exit
|
|
|
+ exit,
|
|
|
+ empty,
|
|
|
|
|
|
};
|
|
|
|
|
@@ -56,6 +58,7 @@ namespace nanxing_extend
|
|
|
{
|
|
|
static_assert(nanxing_extend::compare_admit<K>::value,"the type of K is error");
|
|
|
static_assert(nanxing_extend::compare_admit<V>::value,"the type of V is error");
|
|
|
+ static_assert(nanxing_extend:point_forbid<V>::value,"the type of V cannot be point"); //限定为侵入式数据结构
|
|
|
skip_node<K,V>** next_node;
|
|
|
V value;
|
|
|
K key;
|
|
@@ -84,6 +87,7 @@ namespace nanxing_extend
|
|
|
{
|
|
|
static_assert(nanxing_extend::compare_admit<K>::value,"the type of K is error");
|
|
|
static_assert(nanxing_extend::compare_admit<V>::value,"the type of V is error");
|
|
|
+ static_assert(nanxing_extend:point_forbid<V>::value,"the type of V cannot be point"); //限定为侵入式数据结构
|
|
|
private:
|
|
|
using Node=skip_node<K,V>;
|
|
|
using ptr=Node*;
|
|
@@ -145,10 +149,8 @@ namespace nanxing_extend
|
|
|
throw newNode_error();
|
|
|
}
|
|
|
}
|
|
|
- #endif
|
|
|
-
|
|
|
- [[nodiscard]] //这个返回值最好不要忽略否则很有可能会出现内存泄漏
|
|
|
- auto insert(K _key,V _value)->std::variant<Skip_result,V> //如果相同的时候我们考虑将value返回因为value很可能会是一个指针,需要手动清空内存
|
|
|
+ #endif
|
|
|
+ auto insert(K _key,V _value)->std::variant<Skip_result,V> //如果相同的时候我们考虑将value返回,由于限制为侵入式链表因此实际上不会内存泄露
|
|
|
{
|
|
|
#ifdef NANXING_THREAD_
|
|
|
std::lock_guard<std::shared_mutex> lock(RW_lock);
|
|
@@ -224,7 +226,12 @@ namespace nanxing_extend
|
|
|
[[nodiscard]]
|
|
|
auto Delete_node(K _key)noexcept ->std::variant<Skip_result,V> //由于V由泛型决定可能是一个指针,因此直接将这个类型返回交由用户自主处理
|
|
|
{
|
|
|
-
|
|
|
+ std::variant<Skip_result,V> sk;
|
|
|
+ if(current_size==0)
|
|
|
+ {
|
|
|
+ std:cerr<<"The skiplist is empty"<<std::endl;
|
|
|
+ return sk=Skip_result::empty;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
[[nodiscard]]
|
|
@@ -346,14 +353,8 @@ namespace nanxing_extend
|
|
|
}
|
|
|
std::cout<<"insert successful"<<std::endl;
|
|
|
}
|
|
|
-
|
|
|
- #endif
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+ #endif
|
|
|
};
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|
|
|
|