📄 1.h
字号:
#ifndef _1_h
#define _1_h
#include <stdio.h>
#include <conio.h>
#include <process.h>
#include <alloc.h>
#include <stdlib.h>
#define LISTINCREAME 100
#define LISTINIT 500
#define FLAG "done here"
typedef struct {
double *elem;
int length;
int listsize;
}Arry;
int Init_arry(Arry &); //初始化表L
int Add_arry(Arry & ,int ); //在L的后面加n 个元素
double Caculate( Arry L_A , Arry L_B ,int u ,int v , int k , int n);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -