[算法模板]线性基
2020-12-13 03:07
标签:basis uil ret from 博客 tin image struct res GavinZheng敲懒的。。。 menci大佬的线性基博客 模板代码引自menci: [算法模板]线性基 标签:basis uil ret from 博客 tin image struct res 原文地址:https://www.cnblogs.com/GavinZheng/p/11067665.html线性基
struct LinearBasis
{
long long a[MAXL + 1];
LinearBasis()
{
std::fill(a, a + MAXL + 1, 0);
}
LinearBasis(long long *x, int n)
{
build(x, n);
}
void insert(long long t)
{
for (int j = MAXL; j >= 0; j--)
{
if (!t) return;
if (!(t & (1ll
上一篇:纯JS搜索页面内容-我的扩展版本
下一篇:WinNTSetup V3.X