我知道这是一个愚蠢的问题,但对于树木主题却是陌生的,我想问问是否有人可以向我解释代码中的箭头符号是什么
整数名称的名称无关紧要,我只想知道代码中箭头的含义是什么
/* first update the left subtree */
arrayToBST (arr, root->left, index_ptr);
/* Now update root's data and increment index */
root->data = arr[*index_ptr];
(*index_ptr)++;
/* finally update the right subtree */
arrayToBST (arr, root->right, index_ptr);