您的位置:首页 > 汽车 > 时评 > 建筑设计优秀作品集_平面设计月薪大概多少_seo专业推广_手机优化软件

建筑设计优秀作品集_平面设计月薪大概多少_seo专业推广_手机优化软件

2024/11/17 21:44:20 来源:https://blog.csdn.net/fen_0108/article/details/143253281  浏览:    关键词:建筑设计优秀作品集_平面设计月薪大概多少_seo专业推广_手机优化软件
建筑设计优秀作品集_平面设计月薪大概多少_seo专业推广_手机优化软件

 主对角线方式遍历矩阵

#include<iostream>
#include<algorithm>
using namespace std;const int N = 510;int t, m[N][N];int diagonalTraverse(int matrix[][N], int n) {int rows = n;if (rows == 0) return 0;int cols = n;int sum = 0;// 遍历矩阵的所有对角线for (int d = 0; d < rows + cols - 1; ++d) {// 每条对角线的起始点int row = max(0, d - cols + 1);int col = max(0, cols - d - 1);int tmp = 0;    //可修改// 打印当前对角线上的所有元素while (row < rows && col < cols) {tmp = min(tmp, matrix[row][col]);   //可修改++row;++col;}sum += abs(tmp);   // 可修改}return sum;
}int main()
{cin >> t;while (t--){int n; scanf("%d", &n);for (int i = 0; i < n; i++)for (int j = 0; j < n; j++)scanf("%d", &m[i][j]);int sum = diagonalTraverse(m, n);printf("%d\n", sum);}return 0;
}

副对角线方式遍历矩阵

void diagonalTraverse(vector<vector<int>>& matrix) {int rows = matrix.size();if (rows == 0) return;int cols = matrix[0].size();// 遍历矩阵的所有对角线for (int d = 0; d < rows + cols - 1; ++d) {// 每条对角线的起始点int row = max(0, d - cols + 1);int col = min(d, cols - 1);// 打印当前对角线上的所有元素while (row < rows && col >= 0) {cout << matrix[row][col] << " ";++row;--col;}}
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com