leetcode 109:有序鏈表轉換二叉搜索樹

使用的是遞歸的方式,所以時間複雜度有些高,48ms TreeNode*newTree(std::vector<int> a,int s,int t){ TreeNode*root=NULL; if(t-s==2){ root=new TreeNode(a[s+1]); root->left=new TreeNode(a[s]); ro
相關文章
相關標籤/搜索