56.3k views
1 vote
A B+-tree index includes pointers to link the leaf nodes for which reason(s)? Group of answer choices To save on storage space. To provide more opportunities to combine indexes. In order to improve point query performance. In order to improve range query performance.

User Samjudson
by
6.9k points

1 Answer

4 votes

Final answer:

A B+-tree index includes pointers to link the leaf nodes in order to improve point query performance and improve range query performance.

Step-by-step explanation:

A B+-tree index includes pointers to link the leaf nodes in order to improve point query performance and improve range query performance. Point queries involve searching for a specific value, and the leaf node pointers help navigate directly to the requested value. Range queries involve searching for values within a specified range, and the leaf node pointers help traverse the index efficiently to find all the matching values.

User Kruga
by
8.1k points