Add bit manipulation section.

This commit is contained in:
Oleksii Trekhleb
2018-06-27 17:19:20 +03:00
parent 36e0bfeb32
commit 792f4906df
10 changed files with 152 additions and 0 deletions

View File

@ -49,6 +49,7 @@ a set of rules that precisely define a sequence of operations.
### Algorithms by Topic
* **Math**
* `B` [Bit Manipulation](src/algorithms/math/bits) - set/get/update/clear bits
* `B` [Factorial](src/algorithms/math/factorial)
* `B` [Fibonacci Number](src/algorithms/math/fibonacci)
* `B` [Primality Test](src/algorithms/math/primality-test) (trial division method)