Skip to content

Instantly share code, notes, and snippets.

@minhducsun2002
Created May 29, 2018 14:48
Show Gist options
  • Select an option

  • Save minhducsun2002/25c8723b369ff2db1358a97645dfa47d to your computer and use it in GitHub Desktop.

Select an option

Save minhducsun2002/25c8723b369ff2db1358a97645dfa47d to your computer and use it in GitHub Desktop.
Big Integers library (https://github.com/minhducsun2002/Algorithms-Implementations/tree/bigint-binary/Big%20Integers), converted to use binary sequences internally
#include <bits/stdc++.h>
using namespace std;
class bigint
{
private:
vector <bool> value (1, 0);
bool sign = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment