Skip to content

bbanho/202_ARVDEC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

202_ARVDEC

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)

About

Decision tree using non-linear chained lists

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published