码迷,mamicode.com
首页 > 其他好文 > 详细

矩阵的行之间交换,列之间交换

时间:2018-11-16 17:40:30      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:clu   i++   name   ios   n+1   namespace   char   pre   div   

#include<iostream>
#include<algorithm>
using namespace std;
int a[505][505];
    long n,m,k;

 
int main()
{

    cin>>n>>m;
    for(int i=1;i<=n;i++) 
	  for(int j=1;j<=m;j++) 
         cin>>a[i][j];  
 	 
   // sort(a+1,a+n+1,cmp); 
    
    cin>>k;
    char ch;
    int x,y;
    for(int i=0;i<k;i++)
      {
      	 cin>>ch>>x>>y;
      	 if(ch==‘Q‘)
      	   {
      	     cout<<a[x][y]<<endl;	 
	   }
		 if(ch==‘C‘)
		 {
	            for(int i=1;i<=m;i++)   //x行和y行之间交换
	              {
	        	  int temp=a[x][i];
	        	  a[x][i] = a[y][i];
		          a[y][i] = temp;
		       }		    
		}
      }
     
	return 0;
}

  

 

矩阵的行之间交换,列之间交换

标签:clu   i++   name   ios   n+1   namespace   char   pre   div   

原文地址:https://www.cnblogs.com/fangzheng-nie/p/9969832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!