Przeglądaj źródła

把随机种子改成一样的

main
ssynn 4 tygodni temu
rodzic
commit
fc03061956
1 zmienionych plików z 2 dodań i 2 usunięć
  1. +2
    -2
      test/db_test2.cc

+ 2
- 2
test/db_test2.cc Wyświetl plik

@ -23,7 +23,7 @@ Status OpenDB(std::string dbName, DB **db) {
void InsertData(DB *db) {
WriteOptions writeOptions;
int key_num = data_size / value_size;
srand(static_cast<unsigned int>(time(0)));
srand(0);
for (int i = 0; i < key_num; i++) {
int key_ = rand() % key_num+1;
@ -39,7 +39,7 @@ void GetData(DB *db, int size = (1 << 30)) {
int key_num = data_size / value_size;
// 点查
srand(static_cast<unsigned int>(time(0)));
srand(0);
for (int i = 0; i < 100; i++) {
int key_ = rand() % key_num+1;
std::string key = std::to_string(key_);

Ładowanie…
Anuluj
Zapisz