热门标签
更多>
搜索结果
查询Tags标签: oll,共有 2条记录-
kotlin 第16个程序(尾递归优化)
package com.jpxsr/*** @author: 等风来* @date: 2021/9/12 10:42* @description:*/ fun main(args: Array<String>) {println(oll(100000, 1))}/*** 如果不加 tailrec则程序会出现内存溢出,并且要求返回值为函数本身*/ tailrec fun oll(num: Int, count: Int): In…
2021/9/12 11:36:08 人评论 次浏览 -
kotlin 第16个程序(尾递归优化)
package com.jpxsr/*** @author: 等风来* @date: 2021/9/12 10:42* @description:*/ fun main(args: Array<String>) {println(oll(100000, 1))}/*** 如果不加 tailrec则程序会出现内存溢出,并且要求返回值为函数本身*/ tailrec fun oll(num: Int, count: Int): In…
2021/9/12 11:36:08 人评论 次浏览