Update README for zh-hant version (#1228)

* Bug fixes

* Fix the term in heap figures

* Unify the font of the chapter covers for the zh, en, and zh-Hant version

* Sync the zh-hant vertion with the main branch

* Update README for testing

* Update README for testing

* Update README for testing

* Update README for zh, en, zh-hant version

* Fix the issue links

* Update README

* Update README

* edition -> version
This commit is contained in:
Yudong Jin
2024-04-06 03:57:46 +08:00
committed by GitHub
parent 5f7385c8a3
commit 6e570e2863
52 changed files with 123 additions and 91 deletions

View File

@ -106,7 +106,7 @@ def log_recur(n)
log_recur(n / 2) + 1
end
### 線性對數階
### 線性對數階 ###
def linear_log_recur(n)
return 1 unless n > 1