This commit is contained in:
Sobottasgithub
2026-02-05 22:10:39 +01:00
commit cc226739a3
9 changed files with 269 additions and 0 deletions

13
binaryTree.md Normal file
View File

@@ -0,0 +1,13 @@
+---------------------------------------+
| BinaryTree |
+---------------------------------------+
| - root Node (int) |
| |
+---------------------------------------+
| |
| - Node |
| - content int |
| - leftChild Node |
| - rightChild Node |
+---------------------------------------+