原题网址:https://www.lintcode.com/problem/convert-sorted-array-to-binary-search-tree-with-minimal-height/description
给一个排序数组(从小到大),将其转换为一棵高度最小的排序二叉树。
There may exist multiple valid solutions, return any of them.
给出数组 [1,2,3,4,5,6,7], 返回
[1,2,3,4,5,6,7]
4 / 2 6 / \ / 1 3 5 7
177 把排序数组转换为高度最小的二叉搜索树
原文:https://www.cnblogs.com/Tang-tangt/p/9180166.html