美文网首页
搭建《算法》第四版开发环境

搭建《算法》第四版开发环境

作者: LJ说_LjNotes | 来源:发表于2017-03-05 16:30 被阅读305次

    本书官方网站:http://algs4.cs.princeton.edu/home/

    我用的是macbook air,官方对于mac os 的环境搭建教程是:http://algs4.cs.princeton.edu/mac/

    1、首先是升级JAVA,mac自带1.6版本的java,需要到oracle官网下载最新的1.8版本

    网上教程地址:http://www.jb51.net/article/73277.htm

    2、官方提供了一键安装的app

    Downloadalgs4.zipto the Desktop; double-click it to unzip (if necessary). This createsalgs4.app.

    Double-clickalgs4.appto perform the installation. If you receive a warning thatalgs4.appis an application downloaded from the Internet, clickOpen.

    3、我用的时候遇到的最大问题就是书本上行的StdIn/StdOut等库没法安装,官方提供了algs4.jar,但是一直没有查到应该怎么用。最后辗转弄了一个多小时,还是根据官方的教程搞定了,就是把这个jar包放到extentions里面去。

    Mac OS X (heavy handed).Downloadalgs4.jarand put it in the folder/Users/username/Library/Java/Extensions/.

    然后写代码的时候要import

    importedu.princeton.cs.algs4.StdIn;

    importedu.princeton.cs.algs4.StdOut;

    P.S. 附上windows环境下algs4.jar的配置

    把algs4.jar放到C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext目录,然后在IDE里面导入。

    http://www.cnblogs.com/fhhk/p/5945826.html

    相关文章

      网友评论

          本文标题:搭建《算法》第四版开发环境

          本文链接:https://www.haomeiwen.com/subject/skkegttx.html