大致题意:
给出一张表,n行m列,每一行的列用逗号分隔。判断这个表是否有冗余元素。如果一张表中有两行两列对应的的元素相同,那么这个表就有冗余元素。
分析:
先枚举要排序的列,然后枚举行,如果相邻两行相等,再枚举列,判断元素是否相等。
#include <iostream> #include <cstdio> #include <algorithm> #include <cstring> using namespace std; const int maxn=10000+5; char s[105]; int n,m; int now_c; struct Row { int id; char col[15][105]; } row[maxn]; void shit(int index) { row[index].id=index; int i=0, k = 0, t = 0; while(s[i]!='