view c/regexParser/bitVector.h @ 86:1d7ca366b199

add bitVector
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 19 Oct 2015 18:04:05 +0900
parents
children 43b807f88961
line wrap: on
line source

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

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