void resize(size_type sz, bool c = false);
Changes the size() of the bitvector to sz. If sz is greater than the current size(), extra elements are appended with the value c.
Postcondition: size() == sz.
Throws nothing if sz <= capacity(). If an exception is thrown, there are no effects.