The size of a bitarray??

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Søren Nøhr Christensen

    The size of a bitarray??

    Hi all!


    I was wondering how much overhead was involved in using a bitarray. In
    other words, how much space does an array of say 32bit use?

    snc

  • Mike Wahler

    #2
    Re: The size of a bitarray??

    "Søren Nøhr Christensen" <snc@cs.auc.d k> wrote in message
    news:blrduu$8nk $2@sunsite.dk.. .[color=blue]
    > Hi all!
    >
    >
    > I was wondering how much overhead was involved in using a bitarray.[/color]

    C does not define anything called a "bitarray".
    [color=blue]
    >In
    > other words, how much space does an array of say 32bit use?[/color]

    The smallest unit of storage in C is a byte, expressed
    with type 'char', 'unsigned char', or 'signed char'.
    These types are required to contain a minimum of eight
    bits, but are allowed to contain more. The number of
    bits in a byte can be determined with the 'CHAR_BIT'
    macro (this value need not be the same for all
    implementations ).

    The individual bits of an object cannot be directly
    addressed (but can be examined and modified with the
    bitwise operators, e.g. & and | ).

    Arrays of any type can be created.
    The amount of memory consumed by an array is the product
    of the number of array elements and the array element size,
    in bytes. The size each of the character types is one, by
    definition. The size of any type can be determined using the
    'sizeof' operator.

    char array[100]; /* array consumes 100 bytes, or 100 * CHAR_BIT bits */

    int array[100]; /* array consumes 100 * sizeof(int) bytes, or
    100 * sizeof(int) * CHAR_BIT bits */

    The macro CHAR_BIT is declared by the standard header
    <limits.h>


    Ever considered reading a book about C?

    -Mike


    Comment

    • Keith Thompson

      #3
      Re: The size of a bitarray??

      > I was wondering how much overhead was involved in using a bitarray. In[color=blue]
      > other words, how much space does an array of say 32bit use?[/color]

      I don't know. What's a "bitarray"? C doesn't directly support such
      a concept, but there are a number of ways you can implement an array
      of bits.

      If you have some particular implementation in mind, post some (small)
      sample code and we can answer any questions you might have about it.
      If you don't know how to implement an array of bits in C, we can help
      you with that; I suspect there are libraries out there that can do
      what you want. The underlying implementation would most likely involve
      explicit shifting and masking.

      --
      Keith Thompson (The_Other_Keit h) kst@cts.com <http://www.ghoti.net/~kst>
      San Diego Supercomputer Center <*> <http://www.sdsc.edu/~kst>
      Schroedinger does Shakespeare: "To be *and* not to be"

      Comment

      Working...