三层能装多少条
每个节点装 100 个键的 B+树,三层最多能索引多少条?
运行下面这段程序:
#include <algorithm>
#include <iostream>
#include <map>
#include <string>
#include <vector>
using namespace std;
int main() {
cout << 100LL * 100 * 100 << endl;
}
(本题用 g++ -std=c++17 -O0 编译。)
每个节点装 100 个键的 B+树,三层最多能索引多少条?
运行下面这段程序:
#include <algorithm>
#include <iostream>
#include <map>
#include <string>
#include <vector>
using namespace std;
int main() {
cout << 100LL * 100 * 100 << endl;
}
(本题用 g++ -std=c++17 -O0 编译。)
全部评论