Skip to content

Commit c04c484

Browse files
committed
docs: add missing algorithms and data structures to README
- Add Sieve of Atkin and Sieve of Eratosthenes to Numeric section - Add Iterative Binary Tree Walker to Trees section - Add Open Scatter Hash Table to Hash Tables section
1 parent 9eddbdd commit c04c484

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ If you wish to contribute to C# ALGORITHMS, then please make sure you check out
106106
* [Chained Hash Table](DataStructures/Dictionaries/ChainedHashTable.cs)
107107
* [Cuckoo Hash Table](DataStructures/Dictionaries/CuckooHashTable.cs)
108108
* [Open-Addressing Hash Table](DataStructures/Dictionaries/OpenAddressingHashTable.cs)
109+
* [Open Scatter Hash Table](DataStructures/Dictionaries/OpenScatterHashTable.cs)
109110

110111
#### Sorted Collections (Tree-based):
111112

@@ -193,6 +194,8 @@ If you wish to contribute to C# ALGORITHMS, then please make sure you check out
193194

194195
* [Recursive Binary Tree Walker](Algorithms/Trees/BinaryTreeRecursiveWalker.cs)
195196
+ Methods: PrintAll, ForEach, Contains and BinarySearch. Traversal Modes: Preorder, Inorder & Postorder
197+
* [Iterative Binary Tree Walker](Algorithms/Trees/BinaryTreeIterativeWalker.cs)
198+
+ Methods: PrintAll, ForEach. Traversal Modes: Preorder, Inorder & Postorder
196199

197200
#### Strings:
198201

@@ -205,6 +208,8 @@ If you wish to contribute to C# ALGORITHMS, then please make sure you check out
205208
* [Binomial Coefficients](Algorithms/Numeric/BinomialCoefficients.cs)
206209
* [Catalan Numbers](Algorithms/Numeric/CatalanNumbers.cs)
207210
* [Greatest Common Divisor](Algorithms/Numeric/GreatestCommonDivisor.cs)
211+
* [Sieve of Atkin](Algorithms/Numeric/SieveOfAtkin.cs)
212+
* [Sieve of Eratosthenes](Algorithms/Numeric/SieveOfEratosthenes.cs)
208213

209214
#### Visualization:
210215

TODO.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@
6464
* Big Integer representation.
6565
* Approximation Algorithms.
6666

67-
### Bugfixing:
68-
69-
* Bugfix Bellman-Ford algorithm.
70-
7167
### References:
7268

7369
* MIT's Introduction to Algorithms (6.006):

0 commit comments

Comments
 (0)