二叉树框架 引用:labuladong的算法小抄 1. 前中后遍历 `java void traverse(TreeNode root) { if (root == null) { return; } ...