Merge pull request #903 from LazyWolfLin:dev_random

PiperOrigin-RevId: 420532625
This commit is contained in:
Victor Costan 2022-01-09 03:15:22 +00:00
commit 42cf899927

View File

@ -243,7 +243,7 @@ int SkipList<Key, Comparator>::RandomHeight() {
// Increase height with probability 1 in kBranching
static const unsigned int kBranching = 4;
int height = 1;
while (height < kMaxHeight && ((rnd_.Next() % kBranching) == 0)) {
while (height < kMaxHeight && rnd_.OneIn(kBranching)) {
height++;
}
assert(height > 0);