亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? zz_pex.txt

?? 大數運算類
?? TXT
?? 第 1 頁 / 共 2 頁
字號:

/**************************************************************************\

MODULE: ZZ_pEX

SUMMARY:

The class ZZ_pEX represents polynomials over ZZ_pE,
and so can be used, for example, for arithmentic in GF(p^n)[X].
However, except where mathematically necessary (e.g., GCD computations),
ZZ_pE need not be a field.

\**************************************************************************/

#include <NTL/ZZ_pE.h>
#include <NTL/vec_ZZ_pE.h>

class ZZ_pEX {
public:

   ZZ_pEX(); // initial value 0

   ZZ_pEX(const ZZ_pEX& a); // copy

   ZZ_pEX& operator=(const ZZ_pEX& a); // assignment
   ZZ_pEX& operator=(const ZZ_pE& a);
   ZZ_pEX& operator=(const ZZ_p& a);
   ZZ_pEX& operator=(long a);

   ~ZZ_pEX(); // destructor

   ZZ_pEX(long i, const ZZ_pE& c); // initilaize to X^i*c
   ZZ_pEX(long i, const ZZ_p& c); 
   ZZ_pEX(long i, long c); 

   
};






/**************************************************************************\

                                  Comparison

\**************************************************************************/


long operator==(const ZZ_pEX& a, const ZZ_pEX& b);
long operator!=(const ZZ_pEX& a, const ZZ_pEX& b);

long IsZero(const ZZ_pEX& a); // test for 0
long IsOne(const ZZ_pEX& a); // test for 1

// PROMOTIONS: ==, != promote {long,ZZ_p,ZZ_pE} to ZZ_pEX on (a, b).

/**************************************************************************\

                                   Addition

\**************************************************************************/

// operator notation:

ZZ_pEX operator+(const ZZ_pEX& a, const ZZ_pEX& b);
ZZ_pEX operator-(const ZZ_pEX& a, const ZZ_pEX& b);
ZZ_pEX operator-(const ZZ_pEX& a);

ZZ_pEX& operator+=(ZZ_pEX& x, const ZZ_pEX& a);
ZZ_pEX& operator+=(ZZ_pEX& x, const ZZ_pE& a);
ZZ_pEX& operator+=(ZZ_pEX& x, const ZZ_p& a);
ZZ_pEX& operator+=(ZZ_pEX& x, long a);


ZZ_pEX& operator++(ZZ_pEX& x);  // prefix
void operator++(ZZ_pEX& x, int);  // postfix

ZZ_pEX& operator-=(ZZ_pEX& x, const ZZ_pEX& a);
ZZ_pEX& operator-=(ZZ_pEX& x, const ZZ_pE& a);
ZZ_pEX& operator-=(ZZ_pEX& x, const ZZ_p& a);
ZZ_pEX& operator-=(ZZ_pEX& x, long a);

ZZ_pEX& operator--(ZZ_pEX& x);  // prefix
void operator--(ZZ_pEX& x, int);  // postfix

// procedural versions:

void add(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& b); // x = a + b
void sub(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& b); // x = a - b 
void negate(ZZ_pEX& x, const ZZ_pEX& a); // x = - a 

// PROMOTIONS: +, -, add, sub promote {long,ZZ_p,ZZ_pE} to ZZ_pEX on (a, b).



/**************************************************************************\

                               Multiplication

\**************************************************************************/

// operator notation:

ZZ_pEX operator*(const ZZ_pEX& a, const ZZ_pEX& b);

ZZ_pEX& operator*=(ZZ_pEX& x, const ZZ_pEX& a);
ZZ_pEX& operator*=(ZZ_pEX& x, const ZZ_pE& a);
ZZ_pEX& operator*=(ZZ_pEX& x, const ZZ_p& a);
ZZ_pEX& operator*=(ZZ_pEX& x, long a);


// procedural versions:


void mul(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& b); // x = a * b

void sqr(ZZ_pEX& x, const ZZ_pEX& a); // x = a^2
ZZ_pEX sqr(const ZZ_pEX& a); 

// PROMOTIONS: *, mul promote {long,ZZ_p,ZZ_pE} to ZZ_pEX on (a, b).

void power(ZZ_pEX& x, const ZZ_pEX& a, long e);  // x = a^e (e >= 0)
ZZ_pEX power(const ZZ_pEX& a, long e);


/**************************************************************************\

                               Shift Operations

LeftShift by n means multiplication by X^n
RightShift by n means division by X^n

A negative shift amount reverses the direction of the shift.

\**************************************************************************/

// operator notation:

ZZ_pEX operator<<(const ZZ_pEX& a, long n);
ZZ_pEX operator>>(const ZZ_pEX& a, long n);

ZZ_pEX& operator<<=(ZZ_pEX& x, long n);
ZZ_pEX& operator>>=(ZZ_pEX& x, long n);

// procedural versions:

void LeftShift(ZZ_pEX& x, const ZZ_pEX& a, long n); 
ZZ_pEX LeftShift(const ZZ_pEX& a, long n);

void RightShift(ZZ_pEX& x, const ZZ_pEX& a, long n); 
ZZ_pEX RightShift(const ZZ_pEX& a, long n); 



/**************************************************************************\

                                  Division

\**************************************************************************/

// operator notation:

ZZ_pEX operator/(const ZZ_pEX& a, const ZZ_pEX& b);
ZZ_pEX operator/(const ZZ_pEX& a, const ZZ_pE& b);
ZZ_pEX operator/(const ZZ_pEX& a, const ZZ_p& b);
ZZ_pEX operator/(const ZZ_pEX& a, long b);

ZZ_pEX operator%(const ZZ_pEX& a, const ZZ_pEX& b);

ZZ_pEX& operator/=(ZZ_pEX& x, const ZZ_pEX& a);
ZZ_pEX& operator/=(ZZ_pEX& x, const ZZ_pE& a);
ZZ_pEX& operator/=(ZZ_pEX& x, const ZZ_p& a);
ZZ_pEX& operator/=(ZZ_pEX& x, long a);

ZZ_pEX& operator%=(ZZ_pEX& x, const ZZ_pEX& a);

// procedural versions:


void DivRem(ZZ_pEX& q, ZZ_pEX& r, const ZZ_pEX& a, const ZZ_pEX& b);
// q = a/b, r = a%b

void div(ZZ_pEX& q, const ZZ_pEX& a, const ZZ_pEX& b);
void div(ZZ_pEX& q, const ZZ_pEX& a, const ZZ_pE& b);
void div(ZZ_pEX& q, const ZZ_pEX& a, const ZZ_p& b);
void div(ZZ_pEX& q, const ZZ_pEX& a, long b);
// q = a/b

void rem(ZZ_pEX& r, const ZZ_pEX& a, const ZZ_pEX& b);
// r = a%b

long divide(ZZ_pEX& q, const ZZ_pEX& a, const ZZ_pEX& b);
// if b | a, sets q = a/b and returns 1; otherwise returns 0

long divide(const ZZ_pEX& a, const ZZ_pEX& b);
// if b | a, sets q = a/b and returns 1; otherwise returns 0


/**************************************************************************\

                                   GCD's

These routines are intended for use when ZZ_pE is a field.

\**************************************************************************/


void GCD(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& b);
ZZ_pEX GCD(const ZZ_pEX& a, const ZZ_pEX& b); 
// x = GCD(a, b),  x is always monic (or zero if a==b==0).


void XGCD(ZZ_pEX& d, ZZ_pEX& s, ZZ_pEX& t, const ZZ_pEX& a, const ZZ_pEX& b);
// d = gcd(a,b), a s + b t = d 


/**************************************************************************\

                                  Input/Output

I/O format:

   [a_0 a_1 ... a_n],

represents the polynomial a_0 + a_1*X + ... + a_n*X^n.

On output, all coefficients will be polynomials of degree < ZZ_pE::degree() and
a_n not zero (the zero polynomial is [ ]).  On input, the coefficients
are arbitrary polynomials which are reduced modulo ZZ_pE::modulus(), 
and leading zeros stripped.

\**************************************************************************/

istream& operator>>(istream& s, ZZ_pEX& x);
ostream& operator<<(ostream& s, const ZZ_pEX& a);


/**************************************************************************\

                              Some utility routines

\**************************************************************************/

long deg(const ZZ_pEX& a);  // return deg(a); deg(0) == -1.

const ZZ_pE& coeff(const ZZ_pEX& a, long i);
// returns a read-only reference to the coefficient of X^i, or zero if
// i not in range

const ZZ_pE& LeadCoeff(const ZZ_pEX& a);
// read-only reference to leading term of a, or zero if a == 0

const ZZ_pE& ConstTerm(const ZZ_pEX& a);
// read-only reference to constant term of a, or zero if a == 0

void SetCoeff(ZZ_pEX& x, long i, const ZZ_pE& a);
void SetCoeff(ZZ_pEX& x, long i, const ZZ_p& a);
void SetCoeff(ZZ_pEX& x, long i, long a);
// makes coefficient of X^i equal to a;  error is raised if i < 0

void SetCoeff(ZZ_pEX& x, long i);
// makes coefficient of X^i equal to 1;  error is raised if i < 0

void SetX(ZZ_pEX& x); // x is set to the monomial X

long IsX(const ZZ_pEX& a); // test if x = X

void diff(ZZ_pEX& x, const ZZ_pEX& a); // x = derivative of a
ZZ_pEX diff(const ZZ_pEX& a); 

void MakeMonic(ZZ_pEX& x); 
// if x != 0 makes x into its monic associate; LeadCoeff(x) must be
// invertible in this case

void reverse(ZZ_pEX& x, const ZZ_pEX& a, long hi);
ZZ_pEX reverse(const ZZ_pEX& a, long hi);

void reverse(ZZ_pEX& x, const ZZ_pEX& a);
ZZ_pEX reverse(const ZZ_pEX& a);

// x = reverse of a[0]..a[hi] (hi >= -1);
// hi defaults to deg(a) in second version

void VectorCopy(vec_ZZ_pE& x, const ZZ_pEX& a, long n);
vec_ZZ_pE VectorCopy(const ZZ_pEX& a, long n);
// x = copy of coefficient vector of a of length exactly n.
// input is truncated or padded with zeroes as appropriate.




/**************************************************************************\

                             Random Polynomials

\**************************************************************************/

void random(ZZ_pEX& x, long n);
ZZ_pEX random_ZZ_pEX(long n);
// x = random polynomial of degree < n 


/**************************************************************************\

                    Polynomial Evaluation and related problems

\**************************************************************************/


void BuildFromRoots(ZZ_pEX& x, const vec_ZZ_pE& a);
ZZ_pEX BuildFromRoots(const vec_ZZ_pE& a);
// computes the polynomial (X-a[0]) ... (X-a[n-1]), where n = a.length()

void eval(ZZ_pE& b, const ZZ_pEX& f, const ZZ_pE& a);
ZZ_pE eval(const ZZ_pEX& f, const ZZ_pE& a);
// b = f(a)

void eval(ZZ_pE& b, const ZZ_pX& f, const ZZ_pE& a);
ZZ_pE eval(const ZZ_pEX& f, const ZZ_pE& a);
// b = f(a); uses ModComp algorithm for ZZ_pX

void eval(vec_ZZ_pE& b, const ZZ_pEX& f, const vec_ZZ_pE& a);
vec_ZZ_pE eval(const ZZ_pEX& f, const vec_ZZ_pE& a);
//  b.SetLength(a.length()); b[i] = f(a[i]) for 0 <= i < a.length()

void interpolate(ZZ_pEX& f, const vec_ZZ_pE& a, const vec_ZZ_pE& b);
ZZ_pEX interpolate(const vec_ZZ_pE& a, const vec_ZZ_pE& b);
// interpolates the polynomial f satisfying f(a[i]) = b[i].  

/**************************************************************************\

                       Arithmetic mod X^n

Required: n >= 0; otherwise, an error is raised.

\**************************************************************************/

void trunc(ZZ_pEX& x, const ZZ_pEX& a, long n); // x = a % X^n
ZZ_pEX trunc(const ZZ_pEX& a, long n); 

void MulTrunc(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& b, long n);
ZZ_pEX MulTrunc(const ZZ_pEX& a, const ZZ_pEX& b, long n);
// x = a * b % X^n

void SqrTrunc(ZZ_pEX& x, const ZZ_pEX& a, long n);
ZZ_pEX SqrTrunc(const ZZ_pEX& a, long n);
// x = a^2 % X^n

void InvTrunc(ZZ_pEX& x, const ZZ_pEX& a, long n);
ZZ_pEX InvTrunc(ZZ_pEX& x, const ZZ_pEX& a, long n);
// computes x = a^{-1} % X^m.  Must have ConstTerm(a) invertible.

/**************************************************************************\

                Modular Arithmetic (without pre-conditioning)

Arithmetic mod f.

All inputs and outputs are polynomials of degree less than deg(f), and
deg(f) > 0.


NOTE: if you want to do many computations with a fixed f, use the
ZZ_pEXModulus data structure and associated routines below for better
performance.

\**************************************************************************/

void MulMod(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& b, const ZZ_pEX& f);
ZZ_pEX MulMod(const ZZ_pEX& a, const ZZ_pEX& b, const ZZ_pEX& f);
// x = (a * b) % f

void SqrMod(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& f);
ZZ_pEX SqrMod(const ZZ_pEX& a, const ZZ_pEX& f);
// x = a^2 % f

void MulByXMod(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& f);
ZZ_pEX MulByXMod(const ZZ_pEX& a, const ZZ_pEX& f);
// x = (a * X) mod f

void InvMod(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& f);
ZZ_pEX InvMod(const ZZ_pEX& a, const ZZ_pEX& f);
// x = a^{-1} % f, error is a is not invertible

long InvModStatus(ZZ_pEX& x, const ZZ_pEX& a, const ZZ_pEX& f);
// if (a, f) = 1, returns 0 and sets x = a^{-1} % f; otherwise,
// returns 1 and sets x = (a, f)


/**************************************************************************\

                     Modular Arithmetic with Pre-Conditioning

If you need to do a lot of arithmetic modulo a fixed f, build
ZZ_pEXModulus F for f.  This pre-computes information about f that
speeds up subsequent computations.

As an example, the following routine the product modulo f of a vector
of polynomials.

#include <NTL/ZZ_pEX.h>

void product(ZZ_pEX& x, const vec_ZZ_pEX& v, const ZZ_pEX& f)
{
   ZZ_pEXModulus F(f);
   ZZ_pEX res;
   res = 1;
   long i;
   for (i = 0; i < v.length(); i++)
      MulMod(res, res, v[i], F); 
   x = res;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美亚洲高清一区二区三区不卡| 天堂资源在线中文精品| 成人黄色小视频| 中文字幕亚洲在| 色一情一乱一乱一91av| 亚洲国产精品天堂| 欧美一区二区三区不卡| 美女免费视频一区| 日本一区二区综合亚洲| 色婷婷国产精品综合在线观看| 亚洲色图一区二区三区| 欧美片在线播放| 激情伊人五月天久久综合| 久久色.com| 99国产欧美另类久久久精品| 亚洲国产精品视频| 日韩女优电影在线观看| 成人精品一区二区三区中文字幕| 亚洲男人天堂av| 欧美一级片在线| 成人av网址在线| 首页国产欧美日韩丝袜| 欧美激情一区二区| 欧美日韩色一区| 成人av资源在线| 午夜精品福利在线| 国产日本欧洲亚洲| 欧美久久高跟鞋激| 不卡免费追剧大全电视剧网站| 亚洲一区二区成人在线观看| 精品国产一二三| 日本黄色一区二区| 韩国精品久久久| 亚洲一区二区三区在线播放| 国产婷婷精品av在线| 欧美日韩一二区| 丁香另类激情小说| 毛片av中文字幕一区二区| 国产精品久久久久久久久久久免费看 | 偷窥国产亚洲免费视频| 久久精品视频在线看| 欧美性感一区二区三区| 国产一区二区电影| 亚洲成a人v欧美综合天堂| 久久久国产一区二区三区四区小说 | 一区二区在线观看免费| 2014亚洲片线观看视频免费| 在线免费观看日韩欧美| 国产aⅴ精品一区二区三区色成熟| 亚洲制服丝袜在线| 国产精品―色哟哟| 精品久久久久99| 制服视频三区第一页精品| 色婷婷综合中文久久一本| 成人一区二区三区在线观看| 毛片av一区二区三区| 日韩中文字幕不卡| 一区二区三区av电影| 最新日韩av在线| 国产精品网站在线观看| 久久久三级国产网站| 欧美zozo另类异族| 日韩一区二区三区三四区视频在线观看 | 国产调教视频一区| 久久先锋资源网| 26uuu另类欧美亚洲曰本| 日韩欧美国产一二三区| 欧美一区二区成人6969| 91精品婷婷国产综合久久性色| 欧美性色黄大片| 欧美中文字幕不卡| 91豆麻精品91久久久久久| 在线亚洲一区二区| 91久久精品一区二区| 色乱码一区二区三区88| 91福利视频网站| 欧美肥大bbwbbw高潮| 91精品蜜臀在线一区尤物| 欧美一区二区三区的| 日韩免费一区二区| 久久久亚洲国产美女国产盗摄| 久久久亚洲欧洲日产国码αv| 久久这里只有精品6| 国产精品入口麻豆原神| 中文字幕在线免费不卡| 亚洲免费高清视频在线| 亚洲福利电影网| 免费成人在线影院| 国产传媒日韩欧美成人| av午夜精品一区二区三区| 91在线播放网址| 欧美色图激情小说| 日韩欧美一级片| 国产欧美精品日韩区二区麻豆天美| 国产精品午夜久久| 亚洲午夜视频在线观看| 久久精品国产99国产| 国产福利一区二区三区| 色狠狠色狠狠综合| 日韩一区二区电影网| 久久精品一区二区| 一区二区三区四区亚洲| 蜜臀a∨国产成人精品| 成人精品小蝌蚪| 欧美日韩三级一区| 国产日韩精品一区二区三区| 樱桃国产成人精品视频| 日韩精品电影在线观看| 国产精品影视天天线| 欧洲视频一区二区| 精品成人一区二区| 亚洲猫色日本管| 精品午夜久久福利影院| 91小视频在线| 欧美变态凌虐bdsm| 一区二区日韩av| 国产一区视频在线看| 欧美亚洲综合一区| 欧美激情一区二区三区蜜桃视频| 亚洲一区在线免费观看| 国产高清不卡二三区| 欧美老人xxxx18| 国产精品国产三级国产aⅴ原创| 午夜精品久久久久影视| 成人激情免费网站| 日韩亚洲欧美在线观看| 亚洲欧美日韩在线不卡| 国产一区二区三区久久久| 在线观看日韩电影| 中国av一区二区三区| 久久国产精品色婷婷| 欧美性色欧美a在线播放| 日本一区二区三区电影| 日韩高清在线不卡| 在线观看免费亚洲| 最新不卡av在线| 国产91精品露脸国语对白| 在线成人av网站| 亚洲免费av网站| kk眼镜猥琐国模调教系列一区二区| 欧美一区二区三区人| 亚洲一区二区五区| 91网站在线播放| 国产精品美女一区二区三区| 久久不见久久见中文字幕免费| 欧美午夜影院一区| 亚洲免费在线视频一区 二区| 成人污污视频在线观看| 久久―日本道色综合久久| 日韩成人av影视| 欧美美女视频在线观看| 亚洲国产精品一区二区尤物区| 91欧美激情一区二区三区成人| 国产精品情趣视频| 国产传媒久久文化传媒| 久久亚洲一区二区三区明星换脸| 蜜臀91精品一区二区三区 | 亚洲美女偷拍久久| 91污片在线观看| 亚洲蜜臀av乱码久久精品蜜桃| 99久久精品国产麻豆演员表| 中文一区二区在线观看| 国产成人午夜片在线观看高清观看| 日韩一级大片在线| 美女网站视频久久| 精品成人a区在线观看| 久久99精品国产.久久久久久| 日韩欧美激情四射| 国产麻豆精品视频| 国产精品色婷婷久久58| jvid福利写真一区二区三区| 国产精品国产三级国产三级人妇 | 日本成人在线一区| 欧美高清激情brazzers| 人禽交欧美网站| 日韩午夜av电影| 经典一区二区三区| 久久精品视频免费观看| 成人黄色777网| 亚洲人成网站色在线观看| 色婷婷av一区二区三区之一色屋| 一区二区三区在线观看欧美| 91福利国产精品| 日本亚洲欧美天堂免费| 日韩亚洲电影在线| 麻豆精品久久久| 国产香蕉久久精品综合网| 成人精品亚洲人成在线| 亚洲一区二区影院| 日韩欧美一卡二卡| 波多野结衣中文一区| 亚洲精品国产无套在线观| 欧美老肥妇做.爰bbww视频| 日韩国产欧美在线播放| 国产日韩欧美高清在线| 欧美影院午夜播放| 久久爱www久久做| 亚洲免费大片在线观看| 日韩欧美在线一区二区三区| 国产91高潮流白浆在线麻豆|