public int lowestCommonAncestor (TreeNode root, int p, int q) { if (p < root.val && q < root.val) ...