记一下前序、中序、后序遍历

it2023-09-09  72

都是以根的位置为基准。

前序遍历(根 ->左子树 ->右子树)

中序遍历(左子树 ->根->右子树)

后序遍历(左子树 ->右子树->根)

最新回复(0)