-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab8矩阵转置.c
82 lines (66 loc) · 1.18 KB
/
lab8矩阵转置.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int t;
scanf("%d",&t);
for(;t>0;t--){
int n, m;
scanf("%d %d",&n,&m);
char a[n][m];
int row, col;
for (row=0;row<n;row++){
for(col=0;col<m;col++){
scanf("%d",&a[row][col]);
}
}
char b[m][n];
int i, j;
for (i=0;i<m;i++){
for(j=0;j<n;j++){
b[i][j]=a[j][i];
}
}
for(i=0;i<m;i++){
for(j=0;j<n;j++){
printf("%d ",b[i][j]);
}
printf("\n");
}
}
return 0;
}
/*
在数学上,矩阵是指纵横排列的二维数据表格。
设A为m×n阶j矩阵(即m行n列),第i 行j 列的元素是a[i][j]。定义A的转置为一个n×m阶矩阵B,其中b[i][j] = a[j][i] ,即B的第i行第j列元素是A的第j行第i列元素,记A'=B。例如:
输入
输入测试次数
每组测试数据格式如下:
输入n,m表示矩阵A有n行,m列
接下来输入n行,每行m个数(n<10,m<10)
输出
对每组测试数据,输出转置后的m行n列数据。具体格式见样例。
样例输入
3
2 2
1 3
2 1
3 2
10 20
3 4
40 6
4 4
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
样例输出
1 2
3 1
10 3 40
20 4 6
1 5 9 13
2 6 10 14
3 7 11 15
4 8 12 16
*/