https://github.com/yhtiyar/bitset-c
Bitset structure written in C
https://github.com/yhtiyar/bitset-c
bit-manipulation bit-mask bitset c
Last synced: about 2 months ago
JSON representation
Bitset structure written in C
- Host: GitHub
- URL: https://github.com/yhtiyar/bitset-c
- Owner: Yhtiyar
- Created: 2021-05-29T18:50:18.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-29T18:54:41.000Z (almost 4 years ago)
- Last Synced: 2025-02-10T05:27:57.730Z (3 months ago)
- Topics: bit-manipulation, bit-mask, bitset, c
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bitset-c
Bitset structure written in CBitset is the representation of set in bits, 0 means not included, 1 means included.
Elements count should begin with 0. Indexing in binary begins with 0, from right side.
Example : If there is 5 elements and X = {0, 2, 3} we can represent X as 01101.