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

HDU1671 Phone List (字典樹)

編輯:C++入門知識

HDU1671 Phone List (字典樹)


題目大意:

輸入多串數字串,要求判斷是否有的數字串是其它串的前綴。如果存在輸出NO,否則輸出YES。

解題思路:

用trie建立字典樹,然後在每個數字串的結尾處標志1,之後每輸入一個串,就判斷一下。是否有之前的標志記號。

 

#include
#include
#include
#include
using namespace std;
const int MAX_LEN = 11;
typedef struct trie
{
    trie *next[10];
    int num;
}T;
T *tree;
bool flag;
void trieDel(T *p){
    for(int i=0;i<10;i++){
        if(p->next[i]!=NULL) trieDel(p->next[i]);
    }
    free(p);
}
void trieInsert(char str[]){
    T *p=tree,*q;
    int len=strlen(str);
    for(int i=0;inext[id]==NULL){
            q=new T;
            for(int j=0;j<10;j++)
                q->next[j]=NULL;

            q->num=0;
            p->next[id]=q;
            p=p->next[id];
        }
        else p=p->next[id];

        if(p->num == 1) flag =false;
    }
    p->num=1;

    for(int i=0;i<10;i++){
        if(p->next[i]!=NULL){
            flag=false;
            break;
        }
    }
}
void init(){
    tree = new T;
    for(int i=0;i<10;i++)
    {
        tree->next[i]=NULL;
    }
}
int main()
{
    int cas;
    scanf("%d",&cas);
    while(cas--){
        flag=true;
        int n;
        scanf("%d",&n);
        getchar();
        init();
        for(int i=0;i

以下代碼沒用字典樹:

 

 

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
typedef unsigned long long ull;
typedef long long ll;
using namespace std;



string inp[10010];

bool solve(const string &a, const string & b){
    if(a.length() > b.length())
        return false;
    for(unsigned i = 0; i < a.length(); ++i)
        if(a[i] != b[i])
        return false;
    return true;
}

int main(){
    int t;
    cin >>t;
    while(t--){
        int n;
        bool bol = true;
        cin >> n;
        for(int i = 0; i < n; ++i)
            cin >> inp[i];
        sort(inp, inp + n);
        for(int i = 0; i < n; ++i)
            if(solve(inp[i], inp[i+1]))
                bol = false;
    cout <<(bol?"YES":"NO") <

 

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