n*n के 2d सरणी को देखते हुए और कार्य दिए गए मैट्रिक्स की एंटीस्पाइरल व्यवस्था को खोजना है
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 \n Step 5 -> Loop For i=0 and i<r and i++ Print mat[i][4-1-i] End STOP
उदाहरण
#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<<"\n"; for(i=0;i<R;i++) { cout<<mat[i][4-1-i]<<" "; } }
आउटपुट
यदि हम उपरोक्त प्रोग्राम चलाते हैं तो यह निम्न आउटपुट उत्पन्न करेगा
1 6 11 16 4 7 10 13