diff options
Diffstat (limited to 'sets.h')
-rw-r--r-- | sets.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -14,7 +14,8 @@ #ifdef BITSETS typedef struct { - int N, *size; + int N; // Capacity of set (range of possible elements : 0..N-1) + int *size; // Number of elements actually in the set unsigned long long* tab; } set; #endif |