程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU2698+字符串

HDU2698+字符串

編輯:C++入門知識

/*
字符串處理
*/
#include<stdio.h>
#include<string>
#include<string.h>
#include<stdlib.h>
#include<algorithm>
#include<iostream>
#include<queue>
#include<map>
#include<stack>
#include<set>
#include<math.h>
using namespace std;
typedef long long int64;
//typedef __int64 int64;
typedef pair<int64,int64> PII;
#define MP(a,b) make_pair((a),(b)) 
const int maxn = 115;
const int inf = 0x7fffffff;
const double pi=acos(-1.0);
const double eps = 1e-8;
struct Node{
	char s[ maxn ];
	int cnt;
}a[ maxn ],q[ maxn ];

int Find( char s[],int n ){
	for( int i=1;i<n;i++ ){
		if( strcmp( s,a[i].s)==0 ) 
			return i;
	}
	return -1;
}
bool cmp( Node a,Node b ){
	if( a.cnt!=b.cnt ) return a.cnt>b.cnt;
	else {
		if( strcmp( a.s,b.s )<=0 ) return true;
		else return false;
	}
}
int main(){
	int T;
	scanf("%d",&T);
	while( T-- ){
		int n;
		scanf("%d",&n);
		//init();
		char ID[ maxn ],Web[ maxn ];
		//char L[ maxn ];
		//char R[ maxn ];
		int Cnt = 1;//統計不同的網址
		int cc;
		while( n-- ){
			scanf("%s%s",ID,Web);
			//cin>>ID>>Web;
			cc = Find( Web,Cnt );
			if( ID[0]=='V' ){
				if( cc==-1 ){
					strcpy( a[Cnt].s,Web );
					a[ Cnt ].cnt = 1;
					Cnt++;
					//printf("Add success\n");
				}
				else{
					a[ cc ].cnt++;
				}
			}
			else{
				//sort( a+1,a+1+Cnt,cmp );
				//memset( L,'\0',sizeof( L ) );
				//memset( R,'\0',sizeof( R ) );
				int pp = 0;
				for( int k=1;k<Cnt;k++ ){
					bool f = false;
					for( int i=0;Web[i]!='\0';i++ ){
						if( Web[i]!=a[k].s[i] ){
							f = true;
							break;
						}
					}
					if( f==false ){ 
						//printf("%s\n",a[k].s);
						q[ pp++ ] = a[ k ];
					}
				}
				sort( q,q+pp,cmp );
				for( int i=0;i<pp;i++ ){
					printf("%s\n",q[i].s);
				}
				printf("\n");
			}
		}
	}
	return 0;
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved