Decision tree using non-linear chained lists from Backes' literature
ref esq dir
a b c <- nodo com ramo filho+filho
b s x <- nodo com ramo saida+folha
s x x <- nodo saida
x x x <- nodo folha
NO *findNode(NO* no, char *c, NO *return)
if no->dt=='x'
return NULL;
if no->dt==c
return no;
findNode(no->esq)
findNode(no->dir)