代码搜索结果
找到约 10,000 项符合
J 的代码
j.h
#include
void Jacobi(double **a,double *b,int n)//本函数以课本习题六.3要求为例,即初值和限制次数条件确定。
{
double *crux=new double[n];
double *nextx=new double[n];
double *chax=new double[n];
int i;
j.cpp
#include
#include
#define NULL 0
typedef struct node
{
int data1;
int data2;
struct node * next;
}Lnode;
void Hello()
{