首页 > 后端开发 > C++ > 正文

打印矩阵的对角线模式

WBOY
发布: 2023-09-07 23:45:03
转载
1199 人浏览过

给定一个 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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板