mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 12:58:42 +08:00
Several bug fixes and improvements (#945)
* Update Dockerfile for code debugging. * Format Python code using Black. * Improve dark theme by defining html classes for the figures, animations and cover images. * Fix several glossary translation. * Update a code comment. * Fix climbing_stairs_backtrack: the pruning should not require the sorted choices list. * Update the code of array and list traversal. * Fix a rendering issue of README.md * Update code of list traversal. * Fix array_definition.png * Update README.md * Fix max_capacity_moving_short_board.png * Fix array.dart * Fix array.dart * Fix array.dart * Fix array.dart
This commit is contained in:
@ -2,6 +2,6 @@
|
||||
|
||||
<div class="center-table" markdown>
|
||||
|
||||
{ width="600" }
|
||||

|
||||
|
||||
</div>
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
| 递归树 | recursion tree |
|
||||
| 大 $O$ 记号 | big-$O$ notation |
|
||||
| 渐近上界 | asymptotic upper bound |
|
||||
| 原码 | true form |
|
||||
| 反码 | 1's complement code |
|
||||
| 补码 | 2's complement code |
|
||||
| 原码 | sign–magnitude |
|
||||
| 反码 | 1's complement |
|
||||
| 补码 | 2's complement |
|
||||
| 数组 | array |
|
||||
| 索引 | index |
|
||||
| 链表 | linked list |
|
||||
| 链表节点 | linked list node, list node |
|
||||
| 链表节点 | linked list node, list node |
|
||||
| 列表 | list |
|
||||
| 动态数组 | dynamic array |
|
||||
| 栈 | stack |
|
||||
@ -56,8 +56,8 @@
|
||||
| 完全二叉树 | complete binary tree |
|
||||
| 完满二叉树 | full binary tree |
|
||||
| 平衡二叉树 | balanced binary tree |
|
||||
| AVL 树 | AVL tree |
|
||||
| 红黑树 | red-black tree |
|
||||
| AVL 树 | AVL tree |
|
||||
| 红黑树 | red-black tree |
|
||||
| 层序遍历 | level-order traversal |
|
||||
| 广度优先遍历 | breadth-first traversal |
|
||||
| 深度优先遍历 | depth-first traversal |
|
||||
|
||||
Reference in New Issue
Block a user