C++程序计算矩阵对角线之和

c++程序计算矩阵对角线之和

The utilization of 2-dimensional arrays or matrices is extremely advantageous for severalapplications. Matrix rows and columns are used to hold numbers. We can define 2D在C++中使用多维数组来表示矩阵。在本文中,我们将看看如何实现use C++ to calculate the diagonal sum of a given square matrix.

The matrices have two diagonals, the main diagonal and the secondary diagonal (sometimesreferred to as major and minor diagonals). The major diagonal starts from the top-leftcorner (index [0, 0]) to the bottom-right corner (index [n-1, n-1]) where n is the order of the正方形矩阵。主对角线从右上角(索引[n-1, 0])开始,到左下角corner (index [0, n-1]). Let us see the algorithm to find the sum of the elements along withthese two diagonals.

Matrix Diagonal Sum

的中文翻译为:

矩阵对角线之和

$$egin{bmatrix}8 & 5& 3ewline6 & 7& 1ewline2 & 4& 9end{bmatrix},$$

Sum of all elements in major diagonal: (8 + 7 + 9) = 24Sum of all elements in minor diagonal: (3 + 7 + 2) = 12

登录后复制

In the previous example, one 3 x 3 matrix was used. We have scanned the diagonalsindividually and calculated the sum. Let us see the algorithm and implementation for a clearview.

Algorithm

读取矩阵 M 作为输入考虑 M 具有 n 行和 n 列sum_major := 0sum_minor := 0对于i从0到n-1的范围,执行for j rangign from 0 to n – 1, doif i and j are the same, thensum_major := sum_major + M[ i ][ j ]end ifif (i + j) is same as (N – 1), thensum_minor := sum_minor + M[ i ][ j ]end ifend forend forreturn sum

Example

#include #include #define N 7using namespace std;float solve( int M[ N ][ N ] ){   int sum_major = 0;   int sum_minor = 0;   for ( int i = 0; i 

输出

For the first matrix: The sum of major diagonal: 129The sum of minor diagonal: 359For the second matrix: The sum of major diagonal: 74The sum of minor diagonal: 194

登录后复制

Conclusion

In this article, we have seen how to calculate the diagonal sums of a given square matrix.主对角线从左上角延伸到右下角,而副对角线则从左下角延伸到右上角斜线从右上角开始到左下角。要找到这些的总和diagonal elements, we loop through all elements. When both row and column index values相同,它表示主对角线元素,当两个索引的和为与矩阵的阶数n-1相同,它将添加到副对角线上procedure takes two nested loops and we are traversing through all elements present in the2D数组。因此,计算两条对角线的和将花费O(n2)的时间给定的矩阵。

以上就是C++程序计算矩阵对角线之和的详细内容,更多请关注【创想鸟】其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2583082.html

(0)
上一篇 2025年3月6日 14:28:49
下一篇 2025年3月1日 13:37:47

AD推荐 黄金广告位招租... 更多推荐

相关推荐

发表回复

登录后才能评论