- 论坛徽章:
- 0
|
一道面试题
我做出来了,与大家分享
不过建议大家拿20、30作为输入运行
不然半天得不到结果
- import java.util.*;
- public class may {
- static long count = 0;
- static int number = 300;
- static Stack stack = new Stack();
-
- public static void main(String[] args) throws Exception {
- if (args.length >; 0) {
- number = Integer.parseInt(args[0]);
- }
- foo(number, 1);
- System.out.println(number + ": " + count);
- }
- public static void foo(int n, int m) {
- int s = 0;
- if ((n%2) == 0) { //偶数
- s = (n/2) - 1;
- } else { //奇数
- s = (n-1)/2;
- }
- for (int i = m; i <= s; i++) {
- //stack.push(new Integer(i));
- int c = n - i;
- //System.out.print(number + " = ");
- //for (int j = 0; j < stack.size(); j++) {
- // System.out.print((Integer)stack.elementAt(j) + " + ");
- //}
- //System.out.println(c);
- count++;
- foo(c, i+1);
- //stack.pop();
- }
- }
- }
复制代码 |
|