From 87e4a5b3565bd126f87d04a34ae01b83cdd5c3d3 Mon Sep 17 00:00:00 2001 From: Anri Lombard Date: Sun, 17 Jul 2022 20:46:31 +0200 Subject: [PATCH] Lines 830/1996 --- translations/README-af.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/translations/README-af.md b/translations/README-af.md index 32935d9..15d3a4d 100644 --- a/translations/README-af.md +++ b/translations/README-af.md @@ -817,4 +817,18 @@ of jy kan identifiseer wat die runtime kompleksiteit van verskeie algoritmes is. - [ ] [Binary tree traversal: Preorder, Inorder, Postorder (video)](https://www.youtube.com/watch?v=gm8DUJJhmY4&index=34&list=PL2_aWCzGMAwI3W_JlcBbtYTwiQSsOTa6P) - [ ] [Kyk of 'n binary tree 'b binary search tree is of nie(video)](https://www.youtube.com/watch?v=yEwSGhSsT0U&index=35&list=PL2_aWCzGMAwI3W_JlcBbtYTwiQSsOTa6P) - [ ] [Verwyder 'n node van 'n Binary Search Tree (video)](https://www.youtube.com/watch?v=gcULXE7ViZw&list=PL2_aWCzGMAwI3W_JlcBbtYTwiQSsOTa6P&index=36) - - [ ] [Inorder Successor in 'n binary search tree (video)](https://www.youtube.com/watch?v=5cPbNCrdotA&index=37&list=PL2_aWCzGMAwI3W_JlcBbtYTwiQSsOTa6P) \ No newline at end of file + - [ ] [Inorder Successor in 'n binary search tree (video)](https://www.youtube.com/watch?v=5cPbNCrdotA&index=37&list=PL2_aWCzGMAwI3W_JlcBbtYTwiQSsOTa6P) + - [ ] Implement: + - [ ] insert // vog 'n waarde in 'n boom + - [ ] get_node_count // kry hoeveelheid waardes gestoor is + - [ ] print_values // print die waardes in die boom, van min na max + - [ ] delete_tree + - [ ] is_in_tree // waar wanneer 'n gegewende waarde in 'n boom is + - [ ] get_height // gee die hooggte in nodes (enkel node se hooggte is 1) + - [ ] get_min // gee die minimum waarde wat gestoor is in die boom + - [ ] get_max // gee die maksimum waarde wat gestoor is in die boom + - [ ] is_binary_search_tree + - [ ] delete_value + - [ ] get_successor // gee volgende hoogste waarde in die boom na die gegewende waarde, -1 as niks + +- ### Heap / Priority Queue / Binary Heap \ No newline at end of file