Created
June 30, 2016 21:15
-
-
Save CrazyPython/b41a77e3cd993b58264e6a2785318d41 to your computer and use it in GitHub Desktop.
bitset testing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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