📄 sa.h
字号:
#pragma once
#include "NodeList.h"
#include "stdlib.h"
#include "Math.h"
class AFX_EXT_CLASS SA
{
public:
SA(double *pArray,int width,double t,int l,int count,double lower);
int Add(int,int);
char* Message();
NodeList** GetReturn();
double GetLength(int *);
private:
double *pSAArray;
int Width;
double T;
int L;
NodeList* pHeader;
NodeList* pLast;
void Initialize();
void Simulate();
int* GeneralS(int* s);
bool SimuCondition(int,double);
int ct;
int COUNT;
double LOWER;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -