-
-
Save ortsc/1794d93f97a446d69ca1391a2eccbcd5 to your computer and use it in GitHub Desktop.
k-ésimo sucessor trivial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Assumindo que todos os sucessores estão em t[i] | |
// Saindo do planeta x e andando k passos | |
proximo (planeta x, número k) { | |
enquanto (k > 0) { | |
x = t[x]; // avança o x em uma posição | |
k--; // diminui a quantidade de passos restantes em 1 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment