Skip to content

Instantly share code, notes, and snippets.

@CrazyPython
Created June 30, 2016 21:15
Show Gist options
  • Save CrazyPython/b41a77e3cd993b58264e6a2785318d41 to your computer and use it in GitHub Desktop.
Save CrazyPython/b41a77e3cd993b58264e6a2785318d41 to your computer and use it in GitHub Desktop.
bitset testing
#include <ctime>
#include <iostream>
#include <ctype.h>
#include <algorithm>
#include <vector>
#include <sstream>
using namespace std;
typedef bitset<24> bits;
bitset<24> inline method1(string str) {
/* This tests out on my system to 3 ms/operation */
str.erase(std::remove(str.begin(),str.end(),' '),str.end());
return bits(str);
}
bitset<24> inline method3(const string line) {
/* This tests out on my system to 14 ms/operation */
bits cur_bits(0);
vector<string> tokens = tokenize(line);
for (int i = 0; i < 24; ++i) {
cur_bits[i] = stoi(tokens[i]);
}
return cur_bits;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment