/* public class TreeLinkNode { int val; TreeLinkNode left = null; TreeLinkNode right = null; TreeLinkNode next = null; TreeLinkNode(int val) { this.val = val; } } */ public class Solution { public TreeLinkNode GetNext(TreeLinkNode pNode) { if(pNode==null){ return pNode; } //1.pNode有右子樹->pNode.right的最左節點 if(pNode.right!=null){ pNode=pNode.right; while(pNode.left!=null) pNode=pNode.left; return pNode; } while(pNode.next!=null){ //2.pNode沒有右子樹,pNode是父節點的左子節點->父親節點 if(pNode.next.left==pNode) return pNode.next; //3.pNode沒有右子樹,pNode是父節點的右子節點->父親節點的下一個節點 pNode=pNode.next; } //4.沒有下一個節點 return null; } }