劍指offer 二叉樹的下乙個節點

2021-09-10 16:44:41 字數 368 閱讀 2290

主要要考慮到:當該節點沒有右子樹時,然後要判斷其為父節點的左子樹還是右子樹,同時特別要注意!!!邊界條件,當該節點沒有父節點和右子樹時的判斷(當然也要判斷該節點是否為null)。**如下

/*

public class treelinknode }*/

public class solution

else if(pnode.next==null)

return null;

else if(pnode.next.left==pnode)

return pnode.next;

else

return pnode.next;}}

}

劍指offer 二叉樹的下乙個結點

題目描述 給定乙個二叉樹和其中的乙個結點,請找出中序遍歷順序的下乙個結點並且返回。注意,樹中的結點不僅包含左右子結點,同時包含指向父結點的指標。using namespace std struct treelinknode class solution treelinknode nextnode n...

劍指offer 二叉樹的下乙個節點

給定乙個二叉樹和其中的乙個結點,請找出中序遍歷順序的下乙個結點並且返回。注意,樹中的結點不僅包含左右子結點,同時包含指向父結點的指標。在編寫程式之前,先縷清思路。在該題總,應該分不同情況對其進行討論。情況一 魯棒性 目標節點為空節點時返回ptr 情況二 目標節點沒有父節點且沒有右子樹時,即該節點就是...

劍指offer 二叉樹的下乙個節點

struct treelinknode class solution return currnode case two the node does not has right son,it is the left son of its father if pnode next null return...