首頁 > 後端開發 > C++ > 主體

列印矩陣的對角線模式

WBOY
發布: 2023-09-07 23:45:03
轉載
1197 人瀏覽過

給定一個n*n 的二維數組,任務是找到給定矩陣的反螺旋排列

Input : arr[4][4]={1,2,3,4,
   5,6,7,8,
   9,10,11,12
   13,14,15,16}
Output : 1 6 11 16 4 7 10 13
登入後複製

列印矩陣的對角線模式

演算法

START
Step 1 -> declare start variables as r=4, c=4, i and j
Step 2 -> initialize array as mat[r][c] with elements
Step 3 -> Loop For i=0 and i<r and i++
   Print mat[i][j]
Step 4 -> print </p><p>
Step 5 -> Loop For i=0 and i<r and i++
   Print mat[i][4-1-i]
End
STOP
登入後複製

Example

的中文翻譯為:

範例

#include<iostream>
#include <bits/stdc++.h>
using namespace std;
int main() {
   int R=4,C=4,i,j;
   int mat[R][C] = { {1,2,3, 4}, {5,6,7,8},{9,10,11,12},{13,14,15,16}};
   for(i=0;i<R;i++) {
      cout<<mat[i][i]<<" ";
   }
   cout<<"</p><p>";
   for(i=0;i<R;i++) {
      cout<<mat[i][4-1-i]<<" ";
   }
}
登入後複製

輸出

如果我們執行上面的程序,它將產生以下輸出

1 6 11 16
4 7 10 13
登入後複製

以上是列印矩陣的對角線模式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板