单链表翻转、前缀和数组、二分搜索等.
public void tranverse(TreeNode root){ // 前序位置 tranverse(root.left);// 中序位置 tranverse(root.right);//后续位置 }