Pārlūkot izejas kodu

写了一些和测试相关的函数,本来应该在上次全部提交,但是目录用错了

Gogs 4 mēneši atpakaļ
vecāks
revīzija
318984949a
3 mainītis faili ar 44 papildinājumiem un 35 dzēšanām
  1. 1 1
      README.md
  2. 43 12
      STL/extend/skiplist.h
  3. 0 22
      test.cpp

+ 1 - 1
README.md

@@ -1,3 +1,3 @@
 # nanxing_stl
 
-一个有的C++STL,看官方的一些实现和功能太不爽了
+一个有的C++STL,看官方的一些实现和功能太不爽了

+ 43 - 12
STL/extend/skiplist.h

@@ -6,6 +6,7 @@
 #include<shared_mutex>
 #include <variant>
 #include<chrono>
+#include<iostream>
 
 namespace nanxing_extend
 {
@@ -294,21 +295,51 @@ namespace nanxing_extend
 
     #ifdef SKIP_MAX_SIZE
         [[nodicard]]
-            auto change_size(int _max_size)->std::variant<Skip_result,V> noexcept
+        inline auto change_size(int _max_size)->std::variant<Skip_result,V> noexcept
+        {
+            std::variant<
+            if(_max_size>this->max_size)
             {
-                std::variant<
-                if(_max_size>this->max_size)
-                {
-                    this->max_size=_max_size;
-                    tmp=Skip_result::successufl;
-                    return tmp;
-                }
-                else
+                this->max_size=_max_size;
+                tmp=Skip_result::successufl;
+                return tmp;
+            }
+            else
+            {
+                tmp=Skip_result::too_samll;
+                return tmp;
+            }
+        } 
+    #endif
+
+    #ifdef _NANXING_TEST_
+        inline void insert_check()
+        {
+            ptr tmp=head[0]->next_node[0];
+            K tmp_key;
+            if(tmp==nullptr)
+            {
+                std::cerr<<"the skiplist is empty"<<std::endl;
+                std::terminate();
+            }
+            else
+            {
+                tmp_key=head[0]->next_node[0]->key;
+            }
+            tmp=tmp->next_node[0];
+            while(tmp->next_node[0]!=nullptr)
+            {
+                if(tmp->next_node[0]->key<tmp_key)
                 {
-                    tmp=Skip_result::too_samll;
-                    return tmp;
+                    std::cerr<<"THE skiplist insert error"<<std::endl;
+                    std::terminate();
                 }
-            } 
+                tmp_key=tmp->key;
+                tmp=tmp->next_node[0];
+            }
+            std::cout<<"insert successful"<<std::endl;
+        }
+
     #endif
 
     

+ 0 - 22
test.cpp

@@ -12,28 +12,6 @@ int fun(int a,int b)
 
 int main()
 {
-    nanxing_extend::skipList<int,int> test{15};
-    int random[1024];
-    std::mt19937 rnd(std::chrono::system_clock::now().time_since_epoch().count());
-    for(auto& i:random)
-    {
-        i=static_cast<unsigned int>(rnd());
-    }
-    std::chrono::high_resolution_clock::time_point tp1 = std::chrono::high_resolution_clock::now();
-    
-    for(int i=0;i<200000;i++)
-    {
-        auto get=test.insert(random[i%1024],i);
-    }
 
-    std::chrono::high_resolution_clock::time_point tp2 = std::chrono::high_resolution_clock::now();
-    std::chrono::duration<size_t, std::nano> dur = tp2 - tp1;
-    test.Print();
-    std::cout << "1 被计时代码耗时:" << std::chrono::duration_cast<std::chrono::nanoseconds>(dur).count() << " 纳秒" << std::endl;
-    std::cout << "2 被计时代码耗时:" << std::chrono::duration_cast<std::chrono::microseconds>(dur).count() << " 微妙" << std::endl;
-    std::cout << "3 被计时代码耗时:" << std::chrono::duration_cast<std::chrono::milliseconds>(dur).count() << " 毫秒" << std::endl;
-    std::cout << "4 被计时代码耗时:" << std::chrono::duration_cast<std::chrono::seconds>(dur).count() << " 秒钟" << std::endl;
-    std::cout << "5 被计时代码耗时:" << std::chrono::duration_cast<std::chrono::minutes>(dur).count() << " 分钟" << std::endl;
-    std::cout << "6 被计时代码耗时:" << std::chrono::duration_cast<std::chrono::hours>(dur).count() << " 小时" << std::endl;
 
 }