File tree 2 files changed +17
-7
lines changed 2 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 9
9
10
10
Are you studying binary trees for your next exam, assignment or technical interview?
11
11
12
- ** Binarytree** is a Python library which lets you generate, visualize, inspect and
13
- manipulate binary trees. Skip the tedious work of setting up test data, and dive
14
- straight into practising your algorithms. Heaps and BSTs (binary search trees) are
15
- also supported.
12
+ ** Binarytree** is a Python library which lets you generate, visualize, inspect and
13
+ manipulate [ binary trees] ( https://en.wikipedia.org/wiki/Binary_tree ) . Skip the tedious
14
+ work of setting up test data, and dive straight into practising your algorithms.
15
+ [ Heaps] ( https://en.wikipedia.org/wiki/Heap_(data_structure) ) and
16
+ [ binary search trees] ( https://en.wikipedia.org/wiki/Binary_search_tree ) are also supported.
17
+ Self-balancing search trees like [ red-black] ( https://en.wikipedia.org/wiki/Red%E2%80%93black_tree )
18
+ or [ AVL] ( https://en.wikipedia.org/wiki/AVL_tree ) will be added in the future.
16
19
17
20
Check out the [ documentation] ( http://binarytree.readthedocs.io ) for more details.
18
21
Original file line number Diff line number Diff line change @@ -11,9 +11,16 @@ Binarytree: Python Library for Studying Binary Trees
11
11
Welcome to the documentation for **binarytree **.
12
12
13
13
**Binarytree ** is Python library which lets you generate, visualize, inspect and
14
- manipulate binary trees. Skip the tedious work of setting up test data, and dive
15
- straight into practising algorithms. Heaps and BSTs (binary search trees) are also
16
- supported.
14
+ manipulate `binary trees `_. Skip the tedious work of setting up test data, and dive
15
+ straight into practising algorithms. Heaps _ and `binary search trees `_ are also
16
+ supported. Self-balancing search trees like `red-black `_ or `AVL `_ will be added in
17
+ the future.
18
+
19
+ .. _binary trees : https://en.wikipedia.org/wiki/Binary_tree
20
+ .. _Heaps : https://en.wikipedia.org/wiki/Heap_(data_structure)
21
+ .. _binary search trees : https://en.wikipedia.org/wiki/Binary_search_tree
22
+ .. _red-black : https://en.wikipedia.org/wiki/Red%E2%80%93black_tree
23
+ .. _AVL : https://en.wikipedia.org/wiki/AVL_tree
17
24
18
25
Requirements
19
26
============
You can’t perform that action at this time.
0 commit comments