public TreeLinkNode getNext(TreeLinkNode pNode) { if (pNode == null) return null; if(pNode.right != null){ TreeLinkNode tmp = pNode.right; while (tmp.left != null) tmp = tmp.left; return tmp; } else { ...