代码搜索结果
找到约 10,000 项符合
7 的代码
ex7_7.m
a=[1,2,-2;1,1,1;2,2,1];
b=[9;7;6];
[x,n]=jacobi(a,b,[0;0;0])
[x,n]=gauseidel(a,b,[0;0;0])
xt7-7.cpp
#include
using namespace std;
#define NULL 0
struct student
{long num;
float score;
student *next;
};
int n;
void print(student *head)
{student *p;
ch7_7.cpp
//*********************
//** ch7_7.cpp **
//*********************
#include
int maximum(int[][4],int,int);
void main()
{
int sg[3][4]={{68,77,73,86},
test7_7.txt
#include
#define MAXLINE 1024
int main(void)
{
char line[MAXLINE];
FILE *fp;
if(!(fp=tmpfile()))
{
printf("tempfile error");
exit(1);
test7_7.txt
#include
#define MAXLINE 1024
int main(void)
{
char line[MAXLINE];
FILE *fp;
if(!(fp=tmpfile()))
{
printf("tempfile error");
exit(1);
algo7-7.cpp
// algo7-7.cpp 实现算法7.16的程序
#define MAX_NAME 5 // 顶点字符串的最大长度+1
#define MAX_INFO 20 // 相关信息字符串的最大长度+1
typedef int VRType;
typedef char VertexType[MAX_NAME];
typedef char InfoType;
#include"