Skip to content

Instantly share code, notes, and snippets.

@joffilyfe
Created July 10, 2015 01:55
Show Gist options
  • Save joffilyfe/8b32c229375225cd0b11 to your computer and use it in GitHub Desktop.
Save joffilyfe/8b32c229375225cd0b11 to your computer and use it in GitHub Desktop.
No* buscar(No *lista, int valor) {
No *aux;
aux = lista;
if (aux == NULL) return NULL;
if (aux->dado == valor) return lista;
else return buscar(aux->proximo, valor);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment