0
如何推廣用於查找二叉樹到非二叉樹高度的遞歸代碼?我查了Non-binary tree height。但只是一個僞代碼。到目前爲止,我已經寫了這是我拍攝的錯誤回答以下問題:計算非二叉樹的高度
public static <MyType> int calculateHeight(MyTreeNode<MyType> r){
if (r ==null)
return -1;
if (r.children.size()==0)
return 0;
int count=0;
List<Integer> heights = new ArrayList<>();
for (MyTreeNode<MyType> e : r.children)
count = calculateHeight(e)+1;
heights.add(count);
return max(heights);
}
尋求調試幫助的問題必須不僅包括重現問題所需的最短代碼,還包括期望的行爲和特定的問題或錯誤。 _不工作_不是一個適當的問題描述。請閱讀[如何調試小程序](http://ericlippert.com/2014/03/05/how-to-debug-small-programs/)。 – honk