Convert Sorted List to Binary Search Tree

來源:互聯網
上載者:User
Convert Sorted List to Binary Search TreeOct 3 '123397
/ 9589

Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.

 

剛開始想用課本上的構造平衡二叉樹的方法,當不滿足時,回溯,旋轉,結果在運行大的資料時,逾時。

/** * Definition for singly-linked list. * struct ListNode { *     int val; *     ListNode *next; *     ListNode(int x) : val(x), next(NULL) {} * }; *//** * Definition for binary tree * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    void insertBST(TreeNode* &root, int val)    {        if(root == NULL)        {            root = new TreeNode(val);        }        else if(val > root->val)        {            insertBST(root->right, val);        }        else if(val < root->val)        {            insertBST(root->left, val);        }    }    void turnLeft(TreeNode* &root)    {                TreeNode* tempCR = root->right->left;        root->right->left = root;                root = root->right;        root->left->right = tempCR;    }    int adjust(TreeNode* &root)    {        if(root)        {            int hl = adjust(root->left);            int hr = adjust(root->right);            if(hr > hl + 1)            {                turnLeft(root);                return max(hl, hr);            }            return max(hl, hr)+1;        }        return 0;    }    TreeNode *sortedListToBST(ListNode *head) {        // Start typing your C/C++ solution below        // DO NOT write int main() function        if(head == NULL)            return NULL;        TreeNode* root = NULL;        while(head)        {            insertBST(root, head->val);            adjust(root);            head = head->next;        }        return root;    }};

 

後來,想直接在中間節點分開,遞迴構造。複雜度應該為nlogn

/** * Definition for singly-linked list. * struct ListNode { *     int val; *     ListNode *next; *     ListNode(int x) : val(x), next(NULL) {} * }; *//** * Definition for binary tree * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    TreeNode* buildTree(ListNode* head, int len)    {        if(head && len > 0)        {            int l = len/2;            ListNode* p = head;            int count = 0;            while(p && count < l)            {                count ++;                p = p->next;            }            TreeNode* tre = new TreeNode(p->val);            TreeNode* lc = buildTree(head, count);            TreeNode* lr = buildTree(p->next, len - count -1);            tre->left = lc;            tre->right = lr;            return tre;        }        return NULL;    }    TreeNode *sortedListToBST(ListNode *head) {        // Start typing your C/C++ solution below        // DO NOT write int main() function        int len = 0;        ListNode* p = head;        while(p)        {            len ++;            p = p ->next;        }        return buildTree(head,len);    }};

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.