给定有序数组,创建高度最小的二叉查找树
Posted lxjshuju
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给定有序数组,创建高度最小的二叉查找树相关的知识,希望对你有一定的参考价值。
TreeNode createMinimalBST(int arr[], int start, int end)
{if (end < start)
{
return null;
}
int mid = start + (end - start) / 2;
TreeNode n=new TreeNode(arr[mid]);
n.left=createMinimalBST(arr,start,mid-1);
n.right=createMinimalBST(arr,mid+1,end);
return n;
}
TreeNode createMinimalBST(int array[])
{
return createMinimalBST(array,0,array.length-1);
}
以上是关于给定有序数组,创建高度最小的二叉查找树的主要内容,如果未能解决你的问题,请参考以下文章