Yudong Jin
ddd375af20
feat: Add visualizing code blocks based on the pythontutor ( #1029 )
...
* Update copyright
* Update the Python code
* Fix the code comments in ArrayBinaryTree
* Fix the code comments in ArrayBinaryTree
* Roll back time_comlexity.py
* Add the visualizing code(pythontutor) blocks to the chapter complexity, data structure, array and linked list, stack and queue, hash table, and backtracking
* Fix the code comments
2024-01-07 04:04:01 +08:00
Yudong Jin
f68bbb0d59
Update the book based on the revised second edition ( #1014 )
...
* Revised the book
* Update the book with the second revised edition
* Revise base on the manuscript of the first edition
2023-12-28 18:06:09 +08:00
Yudong Jin
e720aa2d24
feat: Revised the book ( #978 )
...
* Sync recent changes to the revised Word.
* Revised the preface chapter
* Revised the introduction chapter
* Revised the computation complexity chapter
* Revised the chapter data structure
* Revised the chapter array and linked list
* Revised the chapter stack and queue
* Revised the chapter hashing
* Revised the chapter tree
* Revised the chapter heap
* Revised the chapter graph
* Revised the chapter searching
* Reivised the sorting chapter
* Revised the divide and conquer chapter
* Revised the chapter backtacking
* Revised the DP chapter
* Revised the greedy chapter
* Revised the appendix chapter
* Revised the preface chapter doubly
* Revised the figures
2023-12-02 06:21:34 +08:00
krahets
5b1a219b8b
Fine-tune code and texts.
2023-10-27 01:01:21 +08:00
krahets
17252b53a9
Format code and docs.
2023-10-24 16:19:29 +08:00
krahets
5aacf2dfe0
Improve Python code for importing modules.
2023-10-19 16:21:51 +08:00
krahets
346c8451de
Fix code naming style.
2023-10-15 21:18:09 +08:00
krahets
2976d9ff56
Fix Python code.
2023-10-14 21:54:47 +08:00
krahets
628d8a516b
fix binary_search_tree code
2023-08-31 02:31:31 +08:00
krahets
2626de8d0b
Polish the chapter
...
introduction, computational complexity.
2023-08-20 14:51:39 +08:00
krahets
90af225dae
Remove -> None
for Python functions
2023-07-24 22:34:05 +08:00
krahets
4e13755023
Add implementation of array binary tree.
...
Rewrite the tree serialization and deserialization methods.
Add applications of array and linked list.
2023-07-19 16:09:27 +08:00
krahets
ba481cb8e6
Simplify the python code of bst and avl tree.
2023-06-30 05:17:30 +08:00
krahets
98e797f1fc
Fix the bst python code.
...
Fitune the chapters name.
2023-06-30 05:09:17 +08:00
krahets
b39e79be85
Fix remove() in binary search tree.
2023-05-26 20:34:22 +08:00
krahets
e196962d0a
Simplify the declarations of the Python code.
2023-05-22 22:03:57 +08:00
krahets
817b4598d5
Fix a comment in binary_search_tree code
2023-05-17 19:04:46 +08:00
krahets
3590262c7e
Modify the exception handling in Java and Python.
2023-04-23 03:41:39 +08:00
krahets
f7ae9c8a02
Fix the return type of binary search tree and avl tree
2023-04-14 05:47:20 +08:00
krahets
10e2180013
Unify the comment style of python codes
2023-04-09 05:30:02 +08:00
Yudong Jin
5ddcb60825
Format python codes with black. ( #453 )
2023-04-09 05:05:35 +08:00
Yudong Jin
1c8b7ef559
refactor: Replace 结点 with 节点 ( #452 )
...
* Replace 结点 with 节点
Update the footnotes in the figures
* Update mindmap
* Reduce the size of the mindmap.png
2023-04-09 04:32:17 +08:00
Yudong Jin
8918ec9079
refactor: Follow the PEP 585 Typing standard ( #439 )
...
* Follow the PEP 585 Typing standard
* Update list.py
2023-03-23 18:51:56 +08:00
Yudong Jin
9151eaf533
Add typing annotations to Python codes. ( #411 )
2023-03-12 18:49:52 +08:00
krahets
7c501140f0
Update code style for Python
2023-03-03 03:07:22 +08:00
krahets
7238c560d1
Update binary_tree_bfs codes
2023-02-15 03:36:22 +08:00
krahets
300016393b
Add code source blocks to the chapter Graph.
...
Fix "函数" and "方法"
2023-02-10 01:04:26 +08:00
krahets
ecbf2d1560
1. Add build script for Java.
...
2. Add height limitation for code blocks in extra.css.
3. Fix "节点" to "结点".
2023-02-07 04:43:52 +08:00
krahets
ea901af217
1. Add the building util of Python
...
for the markdown docs.
2. Update the deploy.sh
2023-02-06 23:23:21 +08:00
Yudong Jin
70dead5cd0
Update worst_best_time_complexity,
...
leetcode_two_sum
2023-02-03 18:53:15 +08:00
Yudong Jin
2336fe1d50
Update the comments in
...
binary_search_tree and avl_tree.
2023-01-17 01:53:12 +08:00
Yudong Jin
3e19205c84
Update a comment in binary_search_tree.
2023-01-15 15:43:06 +08:00
Yudong Jin
daa28be3e4
Merge branch 'master' into binary_search_tree
2023-01-10 13:30:38 +08:00
龚国玮
96d54bff3a
test(binary_search_tree): update test param all the language
...
use param value 7, not 5. function test param value with param value in example picture as same.
2023-01-10 12:16:02 +08:00
Yudong Jin
97ee638d31
Update the Optional alias of Python codes.
2023-01-09 02:49:34 +08:00
Yudong Jin
dcc3b2e35b
Optimize arrToTree function
...
in java, cpp, py, go, js, ts.
2023-01-08 19:03:22 +08:00
Yudong Jin
410c5d6b62
Free memory after removing
...
a node from a LinkedList or TreeNode.
2023-01-02 19:53:55 +08:00
Yudong Jin
449258f0b0
Add the code to the docs.
2022-12-27 19:33:58 +08:00
Yudong Jin
dbb25003ec
Fine tune
2022-12-27 19:24:43 +08:00
a16su
8b401c2acb
fix format error
2022-12-27 18:34:12 +08:00
a16su
9eac1275f6
add binary_tree and avl_tree python code
2022-12-20 15:52:00 +08:00
krahets
9a861140d8
Rearrange the chapters.
...
Start to translate codes from Java to Python.
2022-11-25 02:04:38 +08:00