代码随想录算法训练营第二十天| ● 654.最大二叉树 ● 617.合并二叉树 ● 700.二叉搜索树中的搜索 ● 98.验证二叉搜索树
二叉搜索树特性:中序序列严格递增654.最大二叉树思路:理解题意,找到数组最大值,其左元素为左子树,其右元素为右子树特殊情况:代码实现classSolution{public:intfindMax(constvector&nums,intleft,intright){if(left>right)-1;intmaxNum=nums[left];intmaxIndex=left;for(inti=le