HDU-1004(基础题)

思想;用一个数组保存每个字符串出现的次数;其中为了能够用 该时数组与前边数组比较,设置一个结构数组能够寸字符串就 ok了;
AC代码;

 #include 
 #include 
 #include 
 #include 
 #include 
 #include 
 #include 
 #include 
 #include 
 #include 
using namespace std;
const int N = 10000;
typedef long long LL;
const int inf = 0x3f3f3f3f;
struct str{
   char c[N];
}str[N];
int main()
{
 LL t;
 LL num[N];
 while(cin>>t&&t)
 {
     getchar();
     for(int i=0;i>str[i].c;
     }
     for(int i=0;i

你可能感兴趣的:(——练习)