ホームページ >バックエンド開発 >C++ >マトリックスの対角パターンを印刷します。

マトリックスの対角パターンを印刷します。

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB転載
2023-09-07 23:45:031247ブラウズ

n*n の 2 次元配列が与えられた場合、タスクは指定された行列の反螺旋配置を見つけることです

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

の中国語訳は次のとおりです。

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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。