算法描述
文艺范晓清新
这个作者很懒,什么都没留下…
展开
-
n的阶乘会溢出?解决超大数字阶乘溢出问题。
在我们面试时通常会遇到阶乘的问题,当然最简单的就是运用递归,循环所求的阶乘数:不多数,直接上代码:/** * 实现10的阶乘 * @author fx * */ public class JieCheng { public static void main(String[] args) { System.out.println(getFac...翻译 2017-07-25 14:50:48 · 13592 阅读 · 9 评论 -
javal链表相加求和!
面试遇到一算法题:You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbe原创 2017-07-27 13:58:17 · 3389 阅读 · 5 评论