HailStone序列

Posted latiny

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HailStone序列相关的知识,希望对你有一定的参考价值。

目前HailStone序列还未被证明是否有穷,所以它未必是一个算法。

* HailStone序列
* n=1时,返回1;
* n>1时且为偶数时,n ∪ n/2
* n>1时且为奇数时,n ∪ 3n + 1

/**
     * HailStone序列
     * n=1时,返回1;
     * n>1时且为偶数时,n ∪ n / 2
     * n>1时且为奇数时,n ∪ 3n + 1
     *
     * @param n
     * @return
     */
    public static String hailStone(int n) 
        StringBuilder str = new StringBuilder();
        while (n > 1) 
            str.append(n + ", ");
            if (n % 2 == 0) 
                n = n/2;
             else 
                n = 3 * n + 1;
            
        
        if (n == 1) 
            str.append(n + ", ");
        
        return str.substring(0, str.length() - 2);
    

 

以上是关于HailStone序列的主要内容,如果未能解决你的问题,请参考以下文章

数据结构与算法-绪论

Spark闭包与序列化

Java mp4parser 片段序列不连续

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

POJ2778DNA Sequence(AC自动机)

第2题——DNA片段