Skip to content
/ algs4 Public

Algorithms Fourth Edition Reading Notes - 算法(第4版)读书笔记

License

Notifications You must be signed in to change notification settings

kang8/algs4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Algorithms Fourth Edition Reading Notes

本 repo 是我读算法(第4版)的读书笔记

本项目使用 maven 来管理,目录结构为:

src
└── main
    ├── java
    │   ├── algs4                  - algs4 提供的标准库
    │   └── kang
    │       │── section_11model    - 每章的代码、习题解答、读书笔记
    │       │── ...
    │       └── section_15uf       - 每章的代码、习题解答、读书笔记
    └── resources                  - algs4 提供的测试数据

以 BinarySearch 为例,如何使用该 repo。

首先确保你的机器上已经安装好 javamaven.

在创建 maven 项目时,我机器上的 Java JDK 为 openjdk version "18.0.2.1" 2022-08-18,故使用此项目请确保你的 Java 版本为 18。

环境安装好之后,使用 mvn compile 来编译 src/ 目录下的文件

mvn compile
# or `nvm compile -f your_local_pom.xml` in order to use other jdk version
# In this repo, you can use `mvn compile -f pom11.xml` to specify jdk 11.

Maven built-in jdk-version is settled after installation, while it's not easy to modify. see same question below: maven-uses-wrong-java-version

maven 会将编辑好的 *.class 以包名为目录放在 target/classes/ 目录下,同样会将 resources/ 中的文件编译到 target/classes 目录下。

所以要测试 BinarySearch,先进入 target/classes,紧接着调用 BinarySearch.class 即可:

cd target/classes
java kang.chapter1_1.BinarySearch tinyW.txt < tinyT.txt

有用的资料

About

Algorithms Fourth Edition Reading Notes - 算法(第4版)读书笔记

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages