摘要: 再论递归 大概是从 汉诺塔 "hanoi" 了解递归算法的: function hanoi(n, a, b, c) { if(n===1) { console.log( ) return } hanoi(n 1, a, c, b); hanoi(1, a, b, c); hanoi(n 1, b, 阅读全文
posted @ 2017-12-22 16:56 Liaofy 阅读(280) 评论(0) 推荐(0) 编辑