连续因素测试

时间:2012-11-20 05:46:56

标签: java algorithm logic

正数n是consecutive-factored当且仅当它有因子时,i和j在i > 1, j > 1 and j = i +1。我需要一个returns 1函数,如果它的参数是连续因子的,那么它是returns 0。例如,24=2*3*43 = 2+1所以函数必须{{1}在这种情况下。

我试过这个:

return 1

任何人都可以帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:3)

首先检查它是否均匀,然后尝试试用

if(n%2!=0) return 0;
for(i=2;i<sqrt(n);++i) {
  int div=i*(i+1);
  if( n % div ==0) { return 1; }
}
return 0;

非常低效,但对于小数字来说很好。除此之外,尝试http://en.wikipedia.org/wiki/Prime_factorization的分解算法。

答案 1 :(得分:2)

我用上面的代码解决了我的问题。以下是代码。

public class ConsecutiveFactor {

    public static void main(String[] args) {
        // TODO code application logic here

        Scanner myscan = new Scanner(System.in);
        System.out.print("Please enter a number: ");
        int num = myscan.nextInt();
        int res = isConsecutiveFactored(num);
        System.out.println("Result: " + res);

    }
    static int isConsecutiveFactored(int number) {
        ArrayList al = new ArrayList();
        for (int i = 2; i <= number; i++) {
            int j = 0;
            int temp;
            temp = number % i;

            if (temp != 0) {
                continue;
            } 

            else {

                al.add(i);
                number = number / i;
                j++;

            }
        }

        Object ia[] = al.toArray();
        System.out.println("Factors are: " + al);
        int LengthOfList = al.size();
        if (LengthOfList >= 2) {
            int a = ((Integer) ia[0]).intValue();
            int b = ((Integer) ia[1]).intValue();

            if ((a + 1) == b) {
                return 1;
            } else {
                return 0;
            }
        } else {
            return 0;
        }

    }
}