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

HDU 1251 統計難題

編輯:C++入門知識

PS: 每每學到一個知識點,要多多練習知道非常熟悉,信手拈來, 以後多多練習一下強大的指針操作。

此題目開內存蠻大的。

#include 
#include 
#include 
#include 
using namespace std;

struct Trie {
    Trie* next[26];
    int num;
};
//Accepted	1251	78MS	43796K	1182 B	C++	Achiber
Trie* root;

void Insert(char *str) {
    Trie* now = root;
    int len = strlen(str);
    for(int i = 0; i < len; i++) {
        int id = str[i]-'a';
        if(now->next[id]==NULL) {
            Trie* p = new Trie;
            p->num = 0;
            memset(p->next, NULL, sizeof(p->next));
            now->next[id] = p;
        }
        now = now->next[id];
        now->num++;
    }
}

int query(char* str) {
    Trie* now = root;
    int counter = 0;
    int len = strlen(str);
    for(int i = 0; i < len; i++) {
        int id = str[i]-'a';
        if(now->next[id]==NULL) {
            return 0;
        } else {
            now = now->next[id];
            counter = now->num;
        }
    }
    return counter;
}

int main()
{
    root = new Trie;
    memset(root->next, NULL, sizeof(root->next));
    char str[20];
    while(gets(str) && str[0]) Insert(str);
    while(gets(str)) {
        int res = query(str);
        printf("%d\n", res);
    }
    return 0;
}

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