543. 二叉樹的直徑
class solution
diameterofbinarytreecore(root);
return max;
}public int diameterofbinarytreecore(treenode root)
int left = diameterofbinarytreecore(root.left);
int right = diameterofbinarytreecore(root.right);
max = math.max(max,left+right);
return math.max(left,right)+1;
}}
687. 最長同值路徑/*
對於任意乙個節點(包含此節點)的最長同值路徑來說有兩種情況
1、以該節點的左右節點為路徑的和,與全域性最大值比較大小
2、如果與父結點值相同,則可能是此節點的左右子樹最長同值路徑加上父結點,此為後序遍歷遞迴的返回值
*/class solution
longestunivaluepathcore(root,root.val);
return max;
}public int longestunivaluepathcore(treenode root, int val)
int left = longestunivaluepathcore(root.left, root.val);
int right = longestunivaluepathcore(root.right, root.val);
max = math.max(max,left+right);
if (root.val == val)
return 0;
}}
124. 二叉樹中的最大路徑和class solution
private int maxpathsumcore(treenode root)
int left = math.max(0,maxpathsumcore(root.left));
int right = math.max(0,maxpathsumcore(root.right));
max = math.max(max,root.val+left+right);
return root.val+math.max(left,right);
}}
二叉樹 二叉樹
題目描述 如上所示,由正整數1,2,3 組成了一顆特殊二叉樹。我們已知這個二叉樹的最後乙個結點是n。現在的問題是,結點m所在的子樹中一共包括多少個結點。比如,n 12,m 3那麼上圖中的結點13,14,15以及後面的結點都是不存在的,結點m所在子樹中包括的結點有3,6,7,12,因此結點m的所在子樹...
樹 二叉樹 滿二叉樹 完全二叉樹 完滿二叉樹
目錄名稱作用根 樹的頂端結點 孩子當遠離根 root 的時候,直接連線到另外乙個結點的結點被稱之為孩子 child 雙親相應地,另外乙個結點稱為孩子 child 的雙親 parent 兄弟具有同乙個雙親 parent 的孩子 child 之間互稱為兄弟 sibling 祖先結點的祖先 ancesto...
二叉樹,完全二叉樹,滿二叉樹
二叉樹 是n n 0 個結點的有限集合,它或者是空樹 n 0 或者是由乙個根結點及兩顆互不相交的 分別稱為左子樹和右子樹的二叉樹所組成。滿二叉樹 一顆深度為k且有2 k 1個結點的二叉樹稱為滿二叉樹。說明 除葉子結點外的所有結點均有兩個子結點。所有葉子結點必須在同一層上。完全二叉樹 若設二叉樹的深度...