C++ 中的双对称矩阵?


以下列出一个程序,它将检查一个矩阵是否为双对称的对称矩阵。双对称矩阵是一个方矩阵,关于这两个主对角线对称。以下矩阵是一个双对称矩阵的示例。

1 2 3 4 5
2 6 7 8 4
3 7 9 7 3
4 8 7 6 2
5 4 3 2 1

算法

checkBiSymmetric(mat, n)

Begin
   for i in range 0 to n – 1, do
      for j in range 0 to i – 1, do
         if mat[i, j] is not same as mat[j, i], then
            return false
         end if
      done
   done
   for i in range 0 to n – 1, do
      for j in range 0 to n – i, do
         if mat[i, j] is not same as mat[n – j - 1, n – i - 1], then
            return false
         end if
      done
   done
   return true
End

示例

 实时演示

#include<iostream>
#define N 5
using namespace std;
int matrix[N][N] = {{1, 2, 3, 4, 5},
{2, 6, 7, 8, 4},
{3, 7, 9, 7, 3},
{4, 8, 7, 6, 2},
{5, 4, 3, 2, 1}};
bool checkBiSymmetric() {
   for (int i = 0; i < N; i++) //scan through forward diagonal
      for (int j = 0; j < i; j++)
         if (matrix[i][j] != matrix[j][i]) //when corresponding elements are not same, return false
            return false;
         for (int i = 0; i < N; i++) //scan through forward diagonal
            for (int j = 0; j < N - i; j++)
               if (matrix[i][j] != matrix[N - j - 1][N - i - 1]) //when corresponding elements are not same, return false
                  return false;
   return true; //otherwise return true
}
main() {
   if(checkBiSymmetric()){
      cout << "Yes the matrix is bisymmetric";
   } else {
      cout << "No the matrix is not bisymmetric";
   }
}

输出

Yes the matrix is bisymmetric

更新于:2019 年 7 月 30 日

147 次浏览

启动你的 职业生涯

完成课程即可获得认证

开始
广告