view c/regexParser/bitVector.h @ 94:43b807f88961 impl-bitvector

implement bitvector (suspend)
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 09 Nov 2015 12:26:07 +0900
parents 1d7ca366b199
children d0d2262d4edf
line wrap: on
line source

typedef struct bitVector {
    int arrayNum;
    unsigned long *bitContainer;
}BitVector,*BitVectorPtr;

typedef struct bitVectorList {
    BitVectorPtr bi;
    bitVectorList* next[256];
}BitVectorList, *BitVectorListPtr;