博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
对称矩阵
阅读量:4944 次
发布时间:2019-06-11

本文共 452 字,大约阅读时间需要 1 分钟。

题目截图:

 

思路:

  遍历矩阵的下三角,判断与对称部分是否相同即可。

 

代码如下:

1 /* 2     对称矩阵  3 */ 4  5 #include 
6 #include
7 #include
8 #include
9 #include
10 #include
11 12 #define maxn 10113 int rec[maxn][maxn]; // 用来存储矩阵 14 15 int main() {16 int n, i, j;17 while(scanf("%d", &n) != EOF) {18 for(i=0; i

 

转载于:https://www.cnblogs.com/coderJiebao/p/HustTest17.html

你可能感兴趣的文章
剑指offer——数组中只出现一次的数字
查看>>
HDU3625 Examining the Rooms
查看>>
PowerDesigner从SqlServer数据库导入数据模型
查看>>
spring FileCopyUtils类 上传图片
查看>>
Java学习笔记-对象与垃圾回收
查看>>
tensorflow教程:tf.contrib.rnn.DropoutWrapper
查看>>
Codeforces-Round#546(Div.2)-D-Nastya Is Buying Lunch
查看>>
UVA 11134 FabledRooks 传说中的车 (问题分解)
查看>>
Python 将python工程打包成 .exe
查看>>
0221-3
查看>>
xshell操作
查看>>
前端国际化文案处理
查看>>
PHP-数据库永久连接
查看>>
java比较字符串相等
查看>>
gcc 编译动态库和静态库
查看>>
TensorFlow学习资源
查看>>
js操作属性
查看>>
python学习摘要(2)--基本数据类型
查看>>
Hessian 客户端流程
查看>>
Linux ISO镜像挂载
查看>>