Skip to content

Commit

Permalink
数据结构和算法
Browse files Browse the repository at this point in the history
  • Loading branch information
kinoxyz1 committed Apr 10, 2023
1 parent c0f3183 commit a391c05
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@
<details>
<summary>Flink</summary>

* [Flink 源码编译](note/flink/flink编译.md)
* [Flink 安装部署](note/flink/flink安装部署.md)
* [Flink 构成和提交流程](note/flink/flink架构和提交流程.md)
* [Flink 并行度的划分](note/flink/flink并行度.md)
Expand Down Expand Up @@ -352,9 +353,7 @@
<details>
<summary>数据结构和算法</summary>

* [数组](note/数据结构和算法/数组.md)
* [队列](note/数据结构和算法/队列.md)
* [链表](note/数据结构和算法/链表.md)
* [数据结构和算法](https://github.com/KinoMin/coder-base/tree/main/algorithm)

</details>

Expand Down
18 changes: 18 additions & 0 deletions note/flink/flink编译.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@





---
# clone code
git clone https://github.com/apache/flink.git

# checkout branch
```bash
git checkout release-1.12
```

# build code
```bash
mvn install -Dmaven.test.skip=true -Drat.skip=true -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true -Dfast -T 4 -Dmaven.compile.fork=true
```
Empty file.
Empty file.
Empty file.

0 comments on commit a391c05

Please sign in to comment.