算法第四版1.1.14

Posted zhuzehua

tags:

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

代码如下

package com.zzh;

import edu.princeton.cs.algs4.StdIn;
import edu.princeton.cs.algs4.StdOut;

public class Test {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        int n=StdIn.readInt();
        StdOut.println(lg(n));
    }
    public static int lg(int n) {
        int count=0;
        while(n/2>=1) {
            n/=2;
            count++;
        }
        return count;
        
    }
}

 

以上是关于算法第四版1.1.14的主要内容,如果未能解决你的问题,请参考以下文章

算法Sedgewick第四版-第1章基础-001递归

算法第四版-文字版-下载地址-Robert Sedgewick

算法第四版1.1.13

算法第四版1.1.20

IntelliJ IDEA 配置《算法》(第四版)

《算法》第四版 IDEA 运行环境的搭建