最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

矩陣乘法 的C程序?qū)崿F(xiàn)2(利用數(shù)組指針)——數(shù)據(jù)結(jié)構(gòu)與算法基礎(chǔ)(青島大學-王卓)緒論

2023-02-22 06:41 作者:阿勇往直前  | 我要投稿

#include<stdio.h>
#include<stdlib.h>

#define N 3
void initMatrix(int(*)[N], int, int);
void mulMatrix(int(*)[N], int(*)[N], int(*)[N], int);
void showMatrix(int(*)[N], int );


int main()
{

?? ?int a[N][N];
?? ?int b[N][N];
?? ?int c[N][N];

?? ?initMatrix(a, N, 1);
?? ?initMatrix(b, N, 5);
?? ?mulMatrix(c, a, b, N);
?? ?showMatrix(a, N);
?? ?showMatrix(b, N);
?? ?showMatrix(c, N);

?? ?system("pause");
?? ?return 0;
}

void initMatrix(int (*a)[N], int n, int starti)
{
?? ?for (int i = 0; i < n; i++)
?? ?{
?? ??? ?for (int j = 0; j < n; j++)
?? ??? ?{
?? ??? ??? ?a[i][j] = starti + i + j;
?? ??? ?}
?? ?}
}

void mulMatrix(int (*c)[N], int (*a)[N], int (*b)[N], int n)
{
?? ?for (int i = 0; i < n; i++)
?? ?{
?? ??? ?for (int j = 0; j < n; j++)
?? ??? ?{
?? ??? ??? ?c[i][j] = 0;
?? ??? ??? ?for (int k = 0; k < n; k++)
?? ??? ??? ?{
?? ??? ??? ??? ?c[i][j] = c[i][j] + a[i][k] * b[k][j];
?? ??? ??? ?}

?? ??? ?}
?? ?}
}

void showMatrix(int (*a)[N], int n)
{
?? ?for (int i = 0; i < n; i++)
?? ?{
?? ??? ?for (int j = 0; j < n; j++)
?? ??? ?{
?? ??? ??? ?printf("%d\t", a[i][j]);
?? ??? ?}
?? ??? ?printf("\n");
?? ?}
?? ?printf("\n");
}

矩陣乘法 的C程序?qū)崿F(xiàn)2(利用數(shù)組指針)——數(shù)據(jù)結(jié)構(gòu)與算法基礎(chǔ)(青島大學-王卓)緒論的評論 (共 條)

分享到微博請遵守國家法律
鄂托克前旗| 讷河市| 伊通| 新沂市| 本溪市| 襄垣县| 澎湖县| 密云县| 曲麻莱县| 中方县| 常熟市| 化隆| 锦屏县| 田林县| 肇源县| 东至县| 久治县| 宁国市| 新源县| 陆河县| 栾城县| 沅陵县| 灵寿县| 保定市| 商城县| 丹凤县| 松原市| 乐至县| 香河县| 卢氏县| 剑川县| 甘孜| 尚志市| 漳州市| 那坡县| 兰考县| 施甸县| 邯郸市| 乌拉特前旗| 内黄县| 台山市|