
index pointer:索引指针。在计算机领域中,指向某个“索引项/索引位置”的指针或引用,用于快速定位数据(常见于数组、文件索引、数据库索引、B 树/哈希索引等结构)。在不同语境里也可能指“索引数组中的指针”“指向索引块的指针”等更具体含义。
/n.dks pn.t/
The index pointer shows where the record is stored.
索引指针显示该记录存放在哪里。
To speed up queries, the database follows an index pointer from the B-tree node to the actual row location, reducing disk reads.
为加快查询,数据库会从 B 树节点沿着索引指针找到实际行的位置,从而减少磁盘读取。
index 源自拉丁语 index,本义与“指示者、目录/索引”相关;pointer 来自 point(指向、点),在计算机中引申为“指针/指向某处的引用”。合起来 index pointer 强调“用于通过索引来指向目标数据位置的指向关系”。