If question says rotate clockwise then we have to reverse columnwise. I want to ask how to implement reverse columnwise ??
Rotate image problem
you have to do it without stl
using simple function like this
void ReverseCol(int arr[][100],int n){
for(int col=0;col<n;col++){
int start=0;
int end=n-1;
while(start<end){
swap(arr[start][col],arr[end][col]);
start++;
end--;
}
}
}
and with using STL??
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.