This is an automated email from the ASF dual-hosted git repository.
lidongdai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler-website.git
The following commit(s) were added to refs/heads/master by this push:
new 436f7d9 Updating Details for the dag picture (#450)
436f7d9 is described below
commit 436f7d94a2101bb590cdf77c28451a39a99d6bb5
Author: yimaixinchen <[email protected]>
AuthorDate: Sat Oct 9 00:24:41 2021 +0800
Updating Details for the dag picture (#450)
* Update DAG.md
updating Details for the dag picture
* updating details for DAG Picture
---
blog/en-us/DAG.md | 15 +++++++--------
blog/zh-cn/DAG.md | 12 +++++++-----
2 files changed, 14 insertions(+), 13 deletions(-)
diff --git a/blog/en-us/DAG.md b/blog/en-us/DAG.md
index d759148..3a98168 100644
--- a/blog/en-us/DAG.md
+++ b/blog/en-us/DAG.md
@@ -53,15 +53,14 @@ Out-degree: Assuming that there is a node V in the directed
graph, the out-degre

-In degree of node 1: 0, out degree: 2
-In degree of node 2: 1, out degree: 2
-
-In degree of node 3: 2, out degree: 1
-
-In degree of node 4: 2, out degree: 2
-
-In degree of node 5: 2, out degree: 0
+|Node|in degree|out degree|count of in degree|count of out degree|
+|----|----|----|----|----|
+|Node 1|0|Node 2,Node 4|0|2|
+|Node 2|Node 1|Node 3,Node 4|1|2|
+|Node 3|Node 2,Node 4|Node 5|2|1|
+|Node 4|Node 1,Node 2|Node 3,Node 5|2|2|
+|Node 5|Node 3,Node 4|0|2|0|
**Its topological sorting process is:**
diff --git a/blog/zh-cn/DAG.md b/blog/zh-cn/DAG.md
index fbb117c..d798b59 100644
--- a/blog/zh-cn/DAG.md
+++ b/blog/zh-cn/DAG.md
@@ -53,15 +53,17 @@

-结点1的入度:0,出度:2
-结点2的入度:1,出度:2
+|结点|入度结点|出度结点|入度结点个数|出度结点个数|
+|----|----|----|----|----|
+|结点1|0|结点2,结点4|0个|2个|
+|结点2|结点1|结点3,结点4|1个|2个|
+|结点3|结点2,结点4|结点5|2个|1个|
+|结点4|结点1,结点2|结点3,结点5|2个|2个|
+|结点5|结点3,结点4|0|2个|0个|
-结点3的入度:2,出度:1
-结点4的入度:2,出度:2
-结点5的入度:2,出度:0
它的拓扑排序流程为: