From a5f060c7fac6835b653b18d879c1aa3b4d06bcfb Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 22 Apr 2013 07:52:48 +0200 Subject: [PATCH] bvector: string/bvector conversion utility --- src/bvector.cpp | 22 ++++++++++++++++++++++ src/bvector.h | 4 ++++ 2 files changed, 26 insertions(+) diff --git a/src/bvector.cpp b/src/bvector.cpp index 8f04081..e044e18 100644 --- a/src/bvector.cpp +++ b/src/bvector.cpp @@ -113,6 +113,28 @@ void bvector::from_poly_cotrace (const polynomial&r, gf2m&fld) item (i) = (r[i % s] >> (i / s) ) & 1; } +bool bvector::to_string (std::string& out) const +{ + if (size() & 0x7) return false; + + out.clear(); + out.resize (size() >> 3, 0); + + for (uint i = 0; i < size(); ++i) + if (item (i) ) out[i >> 3] |= (1 << (i & 0x7) ); + + return true; +} + +void bvector::from_string (const std::string&in) +{ + clear(); + resize (in.length() << 3); + + for (uint i = 0; i < size(); ++i) + item (i) = (in[i >> 3] >> (i & 0x7) ) & 1; +} + /* * utility colex (un)ranking for niederreiter and workalikes. * see Ruskey's Combinatorial Generation, algorithm 4.10 diff --git a/src/bvector.h b/src/bvector.h index 2573453..1857d24 100644 --- a/src/bvector.h +++ b/src/bvector.h @@ -20,6 +20,7 @@ #define _ccr_bvector_h_ #include +#include #include "types.h" #include "vector_item.h" #include "sencode.h" @@ -56,6 +57,9 @@ public: void colex_rank (bvector&) const; void colex_unrank (bvector&, uint n, uint k) const; + bool to_string (std::string&) const; + void from_string (const std::string&); + sencode* serialize(); bool unserialize (sencode*); };