facvec.h

来自「NTL is a high-performance, portable C++ 」· C头文件 代码 · 共 28 行

H
28
字号

#ifndef NTL_FacVec__H
#define NTL_FacVec__H

#include <NTL/vector.h>

NTL_OPEN_NNS

struct IntFactor {
   IntFactor() { }
   ~IntFactor() { }

   long q;
   long a;
   long val;
   long link;
};


NTL_vector_decl(IntFactor,vec_IntFactor)
typedef vec_IntFactor FacVec;

void FactorInt(FacVec& fvec, long n);

NTL_CLOSE_NNS

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?