国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

leetcode109. Convert Sorted List to Binary Search

高勝山 / 2721人閱讀

摘要:題目要求給一個按照遞增順序排列的鏈表。將該鏈表轉(zhuǎn)化為平衡二叉樹。思路和代碼在這里需要注意的是,因為提供的數(shù)據(jù)結(jié)構(gòu)為鏈表,所以我們必須順序遍歷才能知道該鏈表的長度以及該鏈表的中間位置。并依次遞歸左子節(jié)點和右子節(jié)點。

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

給一個按照遞增順序排列的鏈表。將該鏈表轉(zhuǎn)化為平衡二叉樹。

思路和代碼

在這里需要注意的是,因為提供的數(shù)據(jù)結(jié)構(gòu)為鏈表,所以我們必須順序遍歷才能知道該鏈表的長度以及該鏈表的中間位置。在這里,我們可以采用遞歸的形式,而且在遞歸中我們通過雙指針的方式找到其中的中間節(jié)點。并依次遞歸左子節(jié)點和右子節(jié)點。

    public TreeNode sortedListToBST(ListNode head) {
        if(head==null) return null;
        return sortedListToBST(head, null);
    }
    
    public TreeNode sortedListToBST(ListNode head, ListNode tail){
        if(head==tail) return null;
        ListNode fast = head;
        ListNode slow = head;
        while(fast!=tail && fast.next!=tail){
            fast = fast.next.next;
            slow = slow.next;
        }
        TreeNode cHead = new TreeNode(slow.val);
        cHead.left = sortedListToBST(head, slow);
        cHead.right = sortedListToBST(slow.next, tail);
        return cHead;
    }


想要了解更多開發(fā)技術(shù),面試教程以及互聯(lián)網(wǎng)公司內(nèi)推,歡迎關(guān)注我的微信公眾號!將會不定期的發(fā)放福利哦~

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/67564.html

相關(guān)文章

  • [LeetCode] 109. Convert Sorted List to Binary Sear

    Problem Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. For this problem, a height-balanced binary tree is defined as a binary tree in whi...

    dongfangyiyu 評論0 收藏0
  • 109. Converted Sorted List to Binary Search Tree

    摘要:題目答案這里是不能等于也省去了把從中間分隔時,需要添加的麻煩 題目:Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. 答案: /** * Definition for singly-linked list. * p...

    plokmju88 評論0 收藏0
  • [Leetcode] Convert Sorted Array/List to Binary Sea

    摘要:我們可以用和兩個值來限定子樹在鏈表中的位置,通過遞歸的方式,深入找到最左邊,然后開始順序遍歷鏈表鏈表當(dāng)前節(jié)點作為全局變量,這樣無論遞歸在哪我們都能拿到,同時建樹。代碼先遞歸的計算左子樹創(chuàng)造根節(jié)點最后遞歸的計算右子樹 Convert Sorted List to Binary Search Tree Given a singly linked list where elements ar...

    wpw 評論0 收藏0
  • [LeetCode] Convert Sorted Array to Binary Search T

    摘要:思路根據(jù)的性質(zhì),問題轉(zhuǎn)化為找一個里的中位數(shù),用一個函數(shù),一路找中點,再通過前序遍歷的方法把起來代碼 Convert Sorted Array to Binary Search Tree With Minimal Height Given a sorted (increasing order) array, Convert it to create a binarytree with m...

    willin 評論0 收藏0
  • 前端 | 每天一個 LeetCode

    摘要:在線網(wǎng)站地址我的微信公眾號完整題目列表從年月日起,每天更新一題,順序從易到難,目前已更新個題。這是項目地址歡迎一起交流學(xué)習(xí)。 這篇文章記錄我練習(xí)的 LeetCode 題目,語言 JavaScript。 在線網(wǎng)站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公眾號: showImg(htt...

    張漢慶 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<