• LintCode: Convert Sorted Array to Binary Search Tree With Minimal Height


    C++

    /**
     * Definition of TreeNode:
     * class TreeNode {
     * public:
     *     int val;
     *     TreeNode *left, *right;
     *     TreeNode(int val) {
     *         this->val = val;
     *         this->left = this->right = NULL;
     *     }
     * }
     */
    class Solution {
    public:
        /**
         * @param A: A sorted (increasing order) array
         * @return: A tree node
         */
        TreeNode *sortedArrayToBST(vector<int> &A) {
            // write your code here
            if (0 == A.size()) {
                return NULL;
            }
            return buildTree(A, 0, A.size()-1);
        }
        TreeNode *buildTree(vector<int> &A, int from, int to) {
            if (from > to) {
                return NULL;
            }
            int mid = (from+to)/2;
            TreeNode *node = new TreeNode(A[mid]);
            node->left = buildTree(A, from, mid-1);
            node->right = buildTree(A, mid+1, to);
            return node;
        }
    };
  • 相关阅读:
    Git简介
    git 目录
    版本控制系统介绍
    python 爬虫 基于requests模块发起ajax的post请求
    python 爬虫 基于requests模块发起ajax的get请求
    POJ 2575
    POJ 2578
    POJ 2562
    POJ 2572
    POJ 2560
  • 原文地址:https://www.cnblogs.com/CheeseZH/p/5000037.html
Copyright © 2020-2023  润新知