From f7dd05e7a479b0d0d90f078c3b37949c41aaaa6d Mon Sep 17 00:00:00 2001 From: Yuelin Xin Date: Mon, 30 Oct 2023 06:16:10 +0000 Subject: [PATCH] Add missing terminologies (#905) * Update terminology.md * Update terminology.md --------- Co-authored-by: Yudong Jin --- docs/chapter_appendix/terminology.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/chapter_appendix/terminology.md b/docs/chapter_appendix/terminology.md index 23a1c4ae1..d1568e3b2 100644 --- a/docs/chapter_appendix/terminology.md +++ b/docs/chapter_appendix/terminology.md @@ -56,6 +56,8 @@ | 完全二叉树 | complete binary tree | | 完满二叉树 | full binary tree | | 平衡二叉树 | balanced binary tree | +| AVL 树 | AVL tree | +| 红黑树 | red-black tree | | 层序遍历 | level-order traversal | | 广度优先遍历 | breadth-first traversal | | 深度优先遍历 | depth-first traversal | @@ -101,8 +103,8 @@ | 解 | solution | | 状态 | state | | 剪枝 | pruning | -| 全排列问题 | Permutations problem | -| 子集和问题 | Subset-sum problem | +| 全排列问题 | permutations problem | +| 子集和问题 | subset-sum problem | | N 皇后问题 | N-queens problem | | 动态规划 | dynamic programming | | 初始状态 | initial state |