Add more bit manipulation functions.

This commit is contained in:
Oleksii Trekhleb
2018-06-27 17:33:16 +03:00
parent 792f4906df
commit c268203259
6 changed files with 73 additions and 1 deletions

View File

@ -49,7 +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` [Bit Manipulation](src/algorithms/math/bits) - set/get/update/clear bits, multiplication/division by two etc.
* `B` [Factorial](src/algorithms/math/factorial)
* `B` [Fibonacci Number](src/algorithms/math/fibonacci)
* `B` [Primality Test](src/algorithms/math/primality-test) (trial division method)