|
33 | 33 | ##
|
34 | 34 | ### WHAT IS C# ALGORITHMS?
|
35 | 35 |
|
36 |
| -A plug-and-play class-library project of standard Data Structures and Algorithms, written in C#. It contains 35+ Data Structures and 30+ Algorithms designed as Object-Oriented isolated components. Even though this project started for educational purposes, the implemented Data Structures and Algorithms are standard, efficient, stable and tested. |
| 36 | +A plug-and-play class-library project of standard Data Structures and Algorithms, written in C#. It contains **75+** Data Structures and Algorithms, designed as Object-Oriented isolated components. Even though this project started for educational purposes, the implemented Data Structures and Algorithms are standard, efficient, stable and tested. |
37 | 37 |
|
38 | 38 | ##
|
39 | 39 | ### BACK STORY
|
@@ -105,16 +105,20 @@ If you wish to contribute to C# ALGORITHMS, then please make sure you check out
|
105 | 105 |
|
106 | 106 | #### Trees:
|
107 | 107 |
|
108 |
| - |
109 |
| - * [AVL Tree](DataStructures/Trees/AVLTree.cs) |
110 |
| - * [Binary Search Tree](DataStructures/Trees/BinarySearchTree.cs) |
111 |
| - * [Augmented Binary Search Tree](DataStructures/Trees/AugmentedBinarySearchTree.cs) |
112 |
| - * [Map version](DataStructures/Trees/BinarySearchTreeMap.cs) _(supports key-value pairing; nodes indexed by keys)_ |
113 |
| - * [Red-Black Tree](DataStructures/Trees/RedBlackTree.cs) |
114 |
| - * [Map version](DataStructures/Trees/RedBlackTreeMap.cs) _(supports key-value pairing; nodes indexed by keys)_ |
115 |
| - * [Ternary Search Tree](DataStructures/Trees/TernarySearchTree.cs) |
116 |
| - * [Trie](DataStructures/Trees/Trie.cs) |
117 |
| - * [Trie Map](DataStructures/Trees/TrieMap.cs) |
| 108 | + |
| 109 | + * Basic Search Trees: |
| 110 | + + [Binary Search Tree](DataStructures/Trees/BinarySearchTree.cs) |
| 111 | + * [Map version](DataStructures/Trees/BinarySearchTreeMap.cs) _(supports key-value pairing; nodes indexed by keys)_ |
| 112 | + + [\(Augmented\) Binary Search Tree](DataStructures/Trees/AugmentedBinarySearchTree.cs) |
| 113 | + + [Ternary Search Tree](DataStructures/Trees/TernarySearchTree.cs) |
| 114 | + * Self-Balancing Trees: |
| 115 | + + [AVL Tree](DataStructures/Trees/AVLTree.cs) |
| 116 | + + [B-Tree](DataStructures/Trees/BTree.cs) |
| 117 | + + [Red-Black Tree](DataStructures/Trees/RedBlackTree.cs) |
| 118 | + * [Map version](DataStructures/Trees/RedBlackTreeMap.cs) _(supports key-value pairing; nodes indexed by keys)_ |
| 119 | + * Prefix Trees: |
| 120 | + + [Trie](DataStructures/Trees/Trie.cs) |
| 121 | + + [Trie Map](DataStructures/Trees/TrieMap.cs) _(associative prefix tree; complete words are keys to records)_ |
118 | 122 |
|
119 | 123 | #### Graphs:
|
120 | 124 |
|
|
0 commit comments