public void showFolhas() { if (raiz != null) { raiz.showFolhas(); } }
public void showFolhas() { if (esq != null) { esq.showFolhas(); } if (esq == null && dir == null) { Console.WriteLine(x + " "); // exibe nó folha } if (dir != null) { dir.showFolhas(); } }