rothruck.h

来自「压缩文件中是Error Correction Coding - Mathemat」· C头文件 代码 · 共 28 行

H
28
字号
// Define the linked list which holds all the y-roots// found by the roth-ruck algorithm// Copyright 2004 by Todd K. Moon// Permission is granted to use this program/data// for educational/research only#ifndef ROTHRUCK_H#define ROTHRUCK_Hclass rpolynode{public:   rpolynode *next;   polynomialT<TYPE> f;   rpolynode() {	  next = NULL;	  f = TYPE(0);   }   ~rpolynode() {};};rpolynode *rothruck(polynomialT<polynomialT<TYPE> >&Q,int D);#endif

⌨️ 快捷键说明

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