您好,登錄后才能下訂單哦!
本篇內容介紹了“C++怎么求二叉樹的最小深度”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
Given a binary tree, find its minimum depth.
The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.
Note: A leaf is a node with no children.
Example:
Given binary tree [3,9,20,null,null,15,7],
3
/ \
9 20
/ \
15 7
return its minimum depth = 2.
二叉樹的經典問題之最小深度問題就是就最短路徑的節點個數,還是用深度優先搜索 DFS 來完成,萬能的遞歸啊。首先判空,若當前結點不存在,直接返回0。然后看若左子結點不存在,那么對右子結點調用遞歸函數,并加1返回。反之,若右子結點不存在,那么對左子結點調用遞歸函數,并加1返回。若左右子結點都存在,則分別對左右子結點調用遞歸函數,將二者中的較小值加1返回即可,參見代碼如下:
解法一:
class Solution { public: int minDepth(TreeNode* root) { if (!root) return 0; if (!root->left) return 1 + minDepth(root->right); if (!root->right) return 1 + minDepth(root->left); return 1 + min(minDepth(root->left), minDepth(root->right)); } };
我們也可以是迭代來做,層序遍歷,記錄遍歷的層數,一旦遍歷到第一個葉結點,就將當前層數返回,即為二叉樹的最小深度,參見代碼如下:
解法二:
class Solution { public: int minDepth(TreeNode* root) { if (!root) return 0; int res = 0; queue<TreeNode*> q{{root}}; while (!q.empty()) { ++res; for (int i = q.size(); i > 0; --i) { auto t = q.front(); q.pop(); if (!t->left && !t->right) return res; if (t->left) q.push(t->left); if (t->right) q.push(t->right); } } return -1; } };
“C++怎么求二叉樹的最小深度”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。