Created
March 7, 2015 20:39
-
-
Save ifukazoo/657c2dfa56377700ce0d to your computer and use it in GitHub Desktop.
末尾再帰
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
# 再帰部が手続だけ | |
def fact_trailrec(n, p) | |
if n == 1 | |
p | |
else | |
fact_r(n - 1, n * p) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment