Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Bit Array Data Structure with all the basic operations #1323

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

AnuragUmale
Copy link

PR Checklist:

  • My submission is formatted according to the guidelines in the contributing guide
  • My addition is on refer on the language README.md file
  • My addition does not have a spelling problem
  • My submission has a proper and user-friendly description of the algorithm
  • My submission has the time complexity of the algorithm
  • My submission has sample input-output of the program (NOT FOR PYTHON)

What kind of change does this PR introduce? (check at least one)

  • Bugfix
  • New algorithm
  • Optimization in previous algorithms
  • Code style update
  • Refactor
  • Documentation
  • Other, please describe: I have added a data structure Bit-Array, with its respective operations.

Briefly describe the changes in this PR

BitArray Structure

  • Structure Definition: The BitArray struct consists of an unsigned int* array pointer to store the actual bits and a size_t size to keep track of the number of bits.
  • Why unsigned int: unsigned int is used for the storage array to ensure that the storage is treated as a sequence of bits without a sign bit. This choice maximizes portability and efficiency for bitwise operations.

Key Functions and Operations

  1. Creating and Freeing Bit Arrays:

    • createBitArray(size_t n): Allocates memory for a new bit array of n bits, initializing all bits to 0.
    • freeBitArray(BitArrayPtr bit_array): Frees the allocated memory for a bit array to prevent memory leaks.
  2. Basic Bit Manipulations:

    • setBit(BitArray* ba, size_t index): Sets a bit to 1 at the specified index.
    • clearBit(BitArray* ba, size_t index): Clears a bit (sets to 0) at the specified index.
    • toggleBit(BitArray* ba, size_t index): Toggles a bit at the specified index.
    • testBit(const BitArray* ba, size_t index): Tests whether a bit at the specified index is set or not.
  3. Advanced Operations:

    • findFirstSetBit, findFirstUnsetBit: Searches for the first set (1) or unset (0) bit in the array.
    • hammingWeightBitArray: Calculates the Hamming weight (number of set bits).
    • Bitwise operations like AND, OR, NOT, XOR, shifts, and rotates, allowing for complex manipulation of bit sets.
  4. Utility and Convenience:

    • printBitArray: Prints the bit array for debugging and visualization.
    • Operations like bitwiseShiftLeft, bitwiseShiftRight, bitwiseRotateLeft, and bitwiseRotateRight provide ways to shift or rotate bits within the array, which can be useful for algorithms that require bit manipulation, such as cryptography or compression algorithms.
    • bitSlice, unionBitArrays, intersectionBitArrays, differenceBitArrays, resizeBitArray: These functions provide additional operations like slicing a bit array, performing set operations (union, intersection, difference), and resizing a bit array.

Other information:

Use Cases and Applications

Bit arrays are widely used in situations where memory efficiency is crucial, and operations can be represented as sets of binary states. Common applications include:

  • Efficient Storage: Storing compact flags or states for a large number of entities.
  • Set Operations: Performing quick set operations like unions, intersections, and differences.
  • Algorithm Optimization: In algorithms that benefit from bit-level operations, such as cryptographic algorithms, compression techniques, and more.
  • Data Structures: Implementing other data structures like Bloom filters or bitmaps used in databases and indexing.

Copy link

welcome bot commented Mar 25, 2024

Thanks for opening this pull request! Please check out our contributing guidelines.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant