public int Count() { int count = 1; if (LNode != null) { count += LNode.Count(); } if (RNode != null) { count += RNode.Count(); } return(count); }