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

poj 3630 Phone List trie

編輯:C++入門知識

poj 3630 Phone List trie


題意:判斷是否有某字符串是別的字符串的前綴。是則輸出NO,不然輸出YES。

思路:把板子寫成結構體版的。。詳見代碼:

/*********************************************************
  file name: poj3630.cpp
  author : kereo
  create time:  2015年02月09日 星期一 22時22分45秒
*********************************************************/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
typedef long long ll;
const int sigma_size=26;
const int N=100+50;
const int MAXN=100000+50;
const int inf=0x3fffffff;
const double eps=1e-8;
const int mod=1000000000+7;
#define L(x) (x<<1)
#define R(x) (x<<1|1)
#define PII pair
#define mk(x,y) make_pair((x),(y))
int n,sz,flag;
char str[N];
struct node{
    int id,val;
    node *ch[sigma_size];
}nod[MAXN],*root,*null,nil;
struct Trie{
    void init(){
        sz=0;
        nil.id=0; null=&nil;
        newnode(root);
    }
    void newnode(node *&x){
        x=&nod[sz]; x->val=0; x->id=sz++;
        for(int i=0;ich[i]=null;
    }
    void insert(char *str){
        int len=strlen(str);
        node *p=root;
        for(int i=0;ich[k] == null)
                newnode(p->ch[k]);
            if(p->val)
                flag=1;
            p=p->ch[k];
        }
        p->val=1;
        for(int i=0;ich[i]!=null){
                flag=1;
                break;
            }
    }
}trie;
int main(){
    int T;
    scanf("%d",&T);
    while(T--){
        scanf("%d",&n);
        trie.init();
        flag=0;
        for(int i=0;i

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