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

HDU-1800-Flying to the Mars

編輯:C++入門知識

字典樹,每一個節點有10個葉子節點,注意前綴的0要去掉


[cpp] 
#include<iostream> 
#include<cstdio> 
#include<cstring> 
using namespace std; 
int Max; 
struct node 

    int count; 
    node *childs[10]; 
    node() 
    { 
        count=0; 
        int i; 
        for(i=0;i<=9;i++) 
        childs[i]=NULL; 
    } 
}; 
node *root,*current,*newnode; 
void insert(char *str) 

    int i,m; 
    current=root; 
    for(i=0;i<strlen(str);i++) 
    { 
        m=str[i]-'0'; 
        if(current->childs[m]!=NULL) 
        current=current->childs[m]; 
        else 
        { 
            newnode=new node; 
            current->childs[m]=newnode; 
            current=newnode; 
        } 
    } 
    ++(current->count); 
    if((current->count)>Max) 
    Max=(current->count); 

int main() 

    int n,i,len; 
    char s[40],str[40]; 
    while(scanf("%d",&n)!=EOF) 
    { 
        Max=-1; 
        root=new node; 
        while(n--) 
        { 
            scanf("%s",s); 
            len=strlen(s); 
            for(i=0;i<len-1;i++) 
            if(s[i]!='0') 
            break; 
            if(i==len-1) 
            { 
                str[0]=s[len-1]; 
                str[1]='\0'; 
            } 
            else 
            { 
                strncpy(str,&s[i],len-i);  
                str[len-i]='\0'; 
            } 
            insert(str); 
        } 
        printf("%d\n",Max); 
    } 
    return 0; 


作者:Cambridgeacm

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