按顺序去读取矩阵成为字符串,最后比较字符串是否相等
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
bool f(char a[][10],char b[][10],int n,int k)//k(Ðýת½Ç¶È) n(½×Êý)
{
string sa="",sb="";
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
sa+=a[i][j];
switch(k){
case 0:{
...