码迷,mamicode.com
首页 > 其他好文 > 详细

Go by Example: Recursion

时间:2015-01-03 09:23:33      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:递归   golang   go语言   go   recursion   

Go语言支持递归函数。这里是一个经典例子:factorial 数列。

package main

import "fmt"

// fact函数不断地调用自身,直到达到基本状态fact(0)
func fact(n int) int {
    if n == 0 {
        return 1
    }
    return n * fact(n-1)
}

func main() {
    fmt.Println(fact(7))
}
输出

<span style="font-size:18px;"><strong>$ go run recursion.go </strong>
5040</span>

下一个例子: Go by Example:Pointer

英文原文

Go by Example: Recursion

标签:递归   golang   go语言   go   recursion   

原文地址:http://blog.csdn.net/codemanship/article/details/42347881

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!