Algorithm
电灯泡
爱思考、爱总结,对工作无限激情
展开
-
递归删除文件
/** The file structure is like this: * * D:\recurDelete\1 * \2\a.txt * \3\b.txt * \4\4-1\c.txt * \4\4-2\ *原创 2012-07-22 13:20:49 · 502 阅读 · 0 评论 -
递归实现一小算法
/** * Implement algorithm like: f(2,3)=2+22+222; f(3,4)=3+33+333+3333 ...... */ public class Test{ // get each one value public static int recur(int a ,int b){ if (b == 1) {原创 2012-07-22 13:14:56 · 562 阅读 · 0 评论