📄 rothruck.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -