translated some Chinese curriculum files (#40531)

* translate task #1 - #4

* add translation of zhang-suen-thinning and markov algorithm

Co-authored-by: S1ngS1ng <liuxing0514@gmail.com>
This commit is contained in:
miyaliu666
2021-01-09 02:59:18 +08:00
committed by GitHub
parent 7d41dd0e80
commit 9770cd0f81
7 changed files with 181 additions and 110 deletions

View File

@ -107,7 +107,8 @@ _+1 -> _1+
1! -> !1
,! -> !+
_! -> _
# Unary multiplication by duplicating left side, right side times1*1 -> x,@y
# Unary multiplication by duplicating left side, right side times
1*1 -> x,@y
1x -> xX
X, -> 1,1
X1 -> 1X
@ -115,11 +116,13 @@ _x -> _X
,x -> ,X
y1 -> 1y
y_ -> _
# Next phase of applying1@1 -> x,@y
# Next phase of applying
1@1 -> x,@y
1@_ -> @_
,@_ -> !_
++ -> +
# Termination cleanup for addition_1 -> 1
# Termination cleanup for addition
_1 -> 1
1+_ -> 1
_+_ ->
</pre>