How to use libraries for Algorithms part I Coursera course in Eclipse

前端 未结 10 899
挽巷
挽巷 2020-12-23 12:44

I\'ve started Coursera Algorythms course. Practice assignments must be done on Java and they suggest using DrJava as IDE, but it\'s really unconvenient. So I\'d like to use

10条回答
  •  有刺的猬
    2020-12-23 12:59

    Why don't you use these two JARs—— stdlib-package.jar and algs4-package.jar.

    And below the code page(http://algs4.cs.princeton.edu/code/)

    Q. If I use a named package to structure my code, the compiler can no longer access the libraries in stdlib.jar or algs4.jar. Why not?

    A. The libraries in stdlib.jar and algs4.jar are in the "default" package. In Java, you can't access classes in the default package from a named package. If you need to use our libraries with a named package, you can use these package versions: stdlib-package.jar and algs4-package.jar.

    Warning: if you are taking Princeton COS 226 or Coursera, Algorithms, Part I or II, you must use the default package verison of our libraries to facilitate grading.

    Showing my test success: Showing my test success

提交回复
热议问题