Skip to content

Instantly share code, notes, and snippets.

View NAHDI51's full-sized avatar
🎯
Focusing

Hossain Nahdi NAHDI51

🎯
Focusing
View GitHub Profile
@phoemur
phoemur / dynbitset.hpp
Created April 27, 2018 01:27
Dynamic Bitset in C++ implemented as a std::vector<bool>
#ifndef DYNAMIC_BITSET_HEADER
#define DYNAMIC_BITSET_HEADER
#include <algorithm>
#include <functional>
#include <iterator>
#include <numeric>
#include <stdexcept>
#include <string>
#include <sstream>