1. 程式人生 > >poj 百練 2797(基礎題)

poj 百練 2797(基礎題)

求簡單,直接用暴力求解方法

對於字典樹不夠熟悉,題目意思有點奇特

#include <fstream>
#include <string.h>
#include <stdio.h>
#include <algorithm>

#define _cdebbug

using namespace std;

int main()
{
	//重定向
#ifdef _cdebbug
	freopen("F:\\input.txt","r",stdin );
#endif
	char dic[1001][21], subStr[21],tmp[21]; 

	int i,j,count,p;
	memset(dic,0,sizeof(char)*1001*21);
	memset(subStr,0,sizeof(char)*21);
	memset(tmp,0,sizeof(char)*21);
    
	//讀入字典
	count = 0;
	while(scanf("%s",dic[count]) != EOF)
		count++;
	
	//判斷每個字串從最短開始字首是否在其他字串中出現
	for (i = 0; i < count; i++)
	{
		for (j = 1; j <= strlen(dic[i]); j++)
		{
			strncpy(subStr, dic[i], j);
			for (p = 0; p < count; p++)
			{
				if (p == i)
					continue;
				strncpy ( tmp , dic[p] , j );  
                if( strcmp(tmp,subStr) == 0 ) 
					break ; 
			}
			if( p < count ) 
				continue; 
            if( p == count )
				break;
		}
		printf("%s %s\n",dic[i],subStr); 
		memset( subStr , 0 , sizeof(char)*21 );  
		memset( tmp , 0 , sizeof(char)*21 );  
	}


	//解除重定向關閉檔案
	
#ifdef _cdebbug
	fclose(stdin); 
#endif
	return 0 ;
}