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

2021-09-25 04:32:38 字數 439 閱讀 7259

題解:如果乙個結點有右子樹,那麼它的下乙個結點是它右子樹中的最左子節點;

如果乙個結點沒有右子樹,並且它是父節點的左節點,則它的下乙個結點是父節點;

如果乙個結點沒有右子樹,並且它是父節點的右結點,則沿著指向父節點的指標一直向上遍歷,直到找到乙個是它父節點的左子節點的結點。

/*

public class treelinknode }*/

public class solution

treelinknode pnext = null;

if(pnode.right!=null)

pnext = right;

}else if (pnode.next!=null)

pnext = pa;

} return pnext;

}}

劍指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...