'position of a node in a binary tree about how to traverse to it from the root' 有术语吗?

Is there a term for 'position of a node in a binary tree about how to traverse to it from the root'?

是否有 'position of a node in a binary tree about how to traverse to it from the root' 的术语?

例如,假设有这样一个二叉树:

    r
   / \
  b   c
 / \   \
d   e   a
   /
  h

而'e的位置是从根'r'开始的[left,right],或者从'r'开始的[false,true]; 'h 的位置是 [left, right, left] 来自 root 'r',或者 [false, true, false] 来自 'r'

描述二叉树中节点的这种信息,最简洁易懂的术语是什么?例如,是否有一个足够简洁的术语 XXXX 使得 'the XXXX of node h' 可以表达关于树中节点 h 的信息?

查看 binary trees 的维基百科站点,他们提到 路径 ,因此您似乎可以使用这个术语..

另外,这个问题也用到了这个词:

how to get the path from root to a given node on a binary tree?