首页 > 代码库 > 续写上一篇的数组or指针操作
续写上一篇的数组or指针操作
C语言,同样适用if else while 这样的语法,但不同的人,就是有不同的实现方式,甚至是技巧。
eg:
1 #include <stdio.h>
2 #include<string.h>
3 typedef _Bool bool;
4 #define true 1
5 #define false 0
6 #define N 10
7 bool identity_matrix(int matrix[][N])
8 {
9 int row, column;
10 for (row = 0; row < N; ++row)
11 {
12 for (column = 0; column < N; ++column)
13 {
14 /*如果row和column相等,它的值就为1,否则为0
15 这里还需要注意,正面不好找时,找反面,这在高中数学时就有体会了
16 如果我们要判断row和column相等的时候此时的数组值是否是1就需要判断
17 N次,而要是我们判断roe和column相等时,数组值不为1,即为0时,出现这样
18 的情况立即返回false显然更好
19 */
20 if ((row == column) != matrix[row][column])
21 return false;
22 }
23 }
24 return true;
25 }
26 int main(void)
27 {
28 int matrix[10][10] = {
29 { 1,0,0,0,0,0,0,0,0,0 },
30 { 0,1,0,0,0,0,0,0,0,0 },
31 { 0,0,1,0,0,0,0,0,0,0 },
32 { 0,0,0,1,0,0,0,0,0,0 },
33 { 0,0,0,0,1,0,0,0,0,0 },
34 { 0,0,0,0,0,1,0,0,0,0 },
35 { 0,0,0,0,0,0,1,0,0,0 },
36 { 0,0,0,0,0,0,0,1,0,0 },
37 { 0,0,0,0,0,0,0,0,1,0 },
38 { 0,0,0,0,0,0,0,0,0,1 },
39 };
40 int ret = 0;
41 ret=identity_matrix(matrix);
42 if (ret == 1)
43 {
44 printf("单位矩阵.\n");
45 }
46 else
47 {
48 printf("非单位矩阵.\n");
49 }
50 return 0;
51 }
上面红线处的if语句,是一个值得借鉴的表达式,这也是上一篇博客所说到的,这需要平时的积累,就算都是基本语法,但不同的人能用出不一样的花样。
这个代码还有一点不足,就是如果我把数组改成matrix[10][11],其余什么也不改变,程序运行会失常(即误判,不信可以试试),作为一个专业的程序员,必须想到输入数据不符合规范的情况,我们当然知道单位矩阵必须row和column相同,但是我们设计的程序应该要能判断输入是否合法,并给予提示。在看改进代码之前,我们先得求出二维数组的维数,看下列代码:
eg1:
1 int main(void)
2 {
3 int matrix[11][12] = {
4 { 1,0,0,0,0,0,0,0,0,0 },
5 { 0,1,0,0,0,0,0,0,0,0 },
6 { 0,0,1,0,0,0,0,0,0,0 },
7 { 0,0,0,1,0,0,0,0,0,0 },
8 { 0,0,0,0,1,0,0,0,0,0 },
9 { 0,0,0,0,0,1,0,0,0,0 },
10 { 0,0,0,0,0,0,1,0,0,0 },
11 { 0,0,0,0,0,0,0,1,0,0 },
12 { 0,0,0,0,0,0,0,0,1,0 },
13 { 0,0,0,0,0,0,0,0,0,1 },
14 };//只初始化了10*10的
15 int x, y;
16 y = sizeof(matrix[0]) / sizeof(int);//求得列数
17 x = sizeof(matrix) / sizeof(int) / y;//求得行数
18 printf("%d %d\n", x, y);
19 }
这样是可以求出二维数组各个维数的,但是,再做更改如下:
eg2:
1 int identity_matrix(int matrix[][10])
2 {
3 int x, y;
4 y = sizeof(matrix[0]) / sizeof(int);//求得列数
5 x = sizeof(matrix) /sizeof(int)/y;//求得行数
6 printf("%d %d\n", x, y);
7 。。。。。。
8 //下列代码省略
9 }
将其放在函数中时,此时数组当参数,这样会失败,注意了,此时的sizeof(matrix)为4,是一个指针的大小(我的是在X86下,指针4字节,X64下,8个字节)。这里必须要知道,编译器对数组做的退化处理,处理成指针了,那么,怎么办呢?
eg3:
1 #include <stdio.h>
2 #include<string.h>
3 typedef _Bool bool;
4 #define true 1
5 #define false 0
6 #define N 10
7 bool identity_matrix(int (*matrix)[N])//二维数组退化后的形式
8 {
9 int row, column;
10 for (row = 0; row < N; ++row)
11 {
12 for (column = 0; column < N; ++column)
13 {
14 if ((row == column) != matrix[row][column])
15 return false;
16 }
17 }
18 return true;
19
20 }
21 int main(void)
22 {
23 int matrix[12][12] = {
24 { 1,0,0,0,0,0,0,0,0,0 },
25 { 0,1,0,0,0,0,0,0,0,0 },
26 { 0,0,1,0,0,0,0,0,0,0 },
27 { 0,0,0,1,0,0,0,0,0,0 },
28 { 0,0,0,0,1,0,0,0,0,0 },
29 { 0,0,0,0,0,1,0,0,0,0 },
30 { 0,0,0,0,0,0,1,0,0,0 },
31 { 0,0,0,0,0,0,0,1,0,0 },
32 { 0,0,0,0,0,0,0,0,1,0 },
33 { 0,0,0,0,0,0,0,0,0,1 },
34 };
35 int x, y;
36 y = sizeof(matrix[0]) / sizeof(int);//求得列数
37 x = sizeof(matrix) / sizeof(int) / y;//求得行数
38 int ret = 0;
39 if (x == y)
40 {
41 ret = identity_matrix(matrix);
42 if (ret == 1)
43 {
44 printf("单位矩阵.\n");
45 }
46 else
47 {
48 printf("非单位矩阵.\n");
49 }
50 }
51 else
52 {
53 printf("请给我行列相同的矩阵\n");
54 }
55 return 0;
56 }
这样改进之后,行列不同时会提示并且不执行identity_matrix函数,如果定义的数组matrix的维数超过10,例如上面的12*12的,不管你是不是单位矩阵,都将显式非单位矩阵,因为我必须要确定数组的列数,这也算是一个小bug吧,但程序员应该确保实参和形参匹配,不过C99已经支持VLA(变长数组),可以将列数用参数传递,只是因为用的vs2015,这个编译器对c99支持不够,所以不再演示,gcc是完美支持的。
续写上一篇的数组or指针操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。