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: 11 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 (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-29T18:54:41.000Z (about 5 years ago)
- Last Synced: 2025-06-26T14:51:00.407Z (about 1 year ago)
- Topics: bit-manipulation, bit-mask, bitset, c
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bitset-c
Bitset structure written in C
Bitset 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.