|
@@ -3,6 +3,7 @@
|
|
|
#include<cstdlib>
|
|
|
#include<cmath>
|
|
|
#include<cstdint>
|
|
|
+#include"print_result.h"
|
|
|
uint64_t insert_n[10]={4000,1024,57001,7421,3731,24671,19937,134561,1944416,16419};
|
|
|
double insert_p[10]={0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1};
|
|
|
uint64_t result_k[10]={3,3,1,3,3,3,3,3,3,3};
|
|
@@ -25,8 +26,21 @@ auto bloomfilter_creater_test=[]()
|
|
|
{
|
|
|
if(std::abs(static_cast<long long>(bloomfilter->get_m()-result_m[i]))<15&&bloomfilter->get_k()==result_k[i]) //这里为了测试用了g++特定的数据类型
|
|
|
{
|
|
|
+
|
|
|
continue;
|
|
|
}
|
|
|
+ else
|
|
|
+ {
|
|
|
+ double current_p = pow((1 - exp(-(static_cast<long double>(bloomfilter->get_k()) / (static_cast<long double>(bloomfilter->get_m()) / static_cast<long double>(insert_n[i]))))), bloomfilter->get_k()); //这里很重要,C++的除法计算会进行一定的隐式转换
|
|
|
+ std::cout<<"current_p="<<current_p<<std::endl;
|
|
|
+ if(std::abs(current_p-insert_p[i])/insert_p[i]<0.01) //如果和标准的最好结果的差在1%以内就认为是合理的
|
|
|
+ {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ std::cout<<"compare rate= "<<std::abs(current_p-insert_p[i])/insert_p[i]<<std::endl;
|
|
|
+ }
|
|
|
+ }
|
|
|
std::cerr<<"error"<<std::endl;
|
|
|
std::cout<<"i="<<i<<std::endl;
|
|
|
std::cout<<"n="<<insert_n[i]<<std::endl;
|
|
@@ -35,11 +49,11 @@ auto bloomfilter_creater_test=[]()
|
|
|
std::cout<<"parameter.k="<<bloomfilter->get_k()<<std::endl;
|
|
|
std::cout<<"m="<<result_m[i]<<std::endl;
|
|
|
std::cout<<"parameterm="<<bloomfilter->get_m()<<std::endl;
|
|
|
- goto LOOP;
|
|
|
+ nanxing_test::inseat_result_to_txt("bloomfilter_creater_test failure");
|
|
|
+ return;
|
|
|
}
|
|
|
}
|
|
|
- std::cout<<"bloomfilter_creater_test successful"<<std::endl;
|
|
|
-LOOP:
|
|
|
+ nanxing_test::inseat_result_to_txt("bloomfilter_creater_test successful");
|
|
|
};
|
|
|
|
|
|
int main()
|