解题思路 ①二叉搜索树排序 ②按照数组索引,直接返回第k小数值 ③注意特殊情况(空树、k大于树数量...)的处理 /* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param proot TreeNode类 * @param k int整型 * @return int整型 */ function KthNode( proot , k ) { // write co...