Browse Source

搭建filter的类继承架构,目前准备引入bloom filter和Cuckoo filter两种filter

Gogs 4 months ago
parent
commit
caaabda52c
3 changed files with 41 additions and 2 deletions
  1. 32 0
      STL/extend/filter.h
  2. 8 1
      STL/extend/skiplist.h
  3. 1 1
      test.cpp

+ 32 - 0
STL/extend/filter.h

@@ -0,0 +1,32 @@
+
+namespace nanxing_extend
+{
+    //这是个意外,本来是想工厂类和不同的过滤器划分到不同文件的,但是由于贯彻head_only,还没想出来怎么组织文件,只能丢在一起了
+    //但是但是相信我不会有God class
+    class FilterPolicy
+    {
+
+        FilterPolicy* creat_Bloomfilter();
+        FilterPolicy* creat_Cuckoofilter();      //两个工厂函数用于生成不同的过滤器
+    };
+
+    class bloomfilter:public FilterPolicy
+    {
+
+    };
+
+    class Cuckoofilter:public FilterPolicy
+    {
+
+    };
+
+    FilterPolicy* FilterPolicy::creat_Bloomfilter()
+    {
+        return new bloomfilter;
+    }
+
+    FilterPolicy* FilterPolicy::creat_Cuckoofilter()
+    {
+        return new Cuckoofilter;
+    }
+}

+ 8 - 1
STL/extend/skiplist.h

@@ -221,6 +221,12 @@ namespace nanxing_extend
             return sk;
         }
 
+        [[nodiscard]]
+        auto Delete_node(K _key)noexcept ->std::variant<Skip_result,V>            //由于V由泛型决定可能是一个指针,因此直接将这个类型返回交由用户自主处理
+        {
+
+        }
+
         [[nodiscard]]                    
         auto search(K _key) noexcept ->std::variant<Skip_result,V>{       //不涉及任何内存分配相关任务,因此是异常安全的
         #ifdef NANXING_THREAD_
@@ -266,6 +272,7 @@ namespace nanxing_extend
             catch(std::bad_alloc)
             {
                 throw random_error();
+                return;
             }
             std::mt19937 rnd(std::chrono::system_clock::now().time_since_epoch().count());
             for(int i=0;i<1024;i++)
@@ -275,7 +282,7 @@ namespace nanxing_extend
         }
 
 
-        void Print()
+        void Print()noexcept
         {
             ptr tmp=head[0]->next_node[0];
             while(tmp!=nullptr&&tmp->next_node[0]!=nullptr)         //这里用了截断的技巧,即第一个条件不成立就不会触发第二个条件运行

+ 1 - 1
test.cpp

@@ -12,6 +12,6 @@ int fun(int a,int b)
 
 int main()
 {
-
+    newbloom();
 
 }