📄 polylist.h
字号:
// PolyList.h: interface for the CPolyList class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_POLYLIST_H__92324553_C061_4014_9786_7D2D67AB2207__INCLUDED_)
#define AFX_POLYLIST_H__92324553_C061_4014_9786_7D2D67AB2207__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "String.h"
class CPolyList : public CObject
{
public:
typedef struct item
{
int coef;
int exp;
};
struct pnode
{
item node;
pnode *next;
}*head;
pnode *p,*q;
public:
CPolyList();
virtual ~CPolyList();
void InsertItem(int coef, int exp);
CString ShowPoly();
};
#endif // !defined(AFX_POLYLIST_H__92324553_C061_4014_9786_7D2D67AB2207__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -