• OpenJudge/Poj 2001 Shortest Prefixes


    1.链接地址:

    http://bailian.openjudge.cn/practice/2001

    http://poj.org/problem?id=2001

    2.题目:

    Shortest Prefixes
    Time Limit: 1000MS   Memory Limit: 30000K
    Total Submissions: 12208   Accepted: 5210

    Description

    A prefix of a string is a substring starting at the beginning of the given string. The prefixes of "carbon" are: "c", "ca", "car", "carb", "carbo", and "carbon". Note that the empty string is not considered a prefix in this problem, but every non-empty string is considered to be a prefix of itself. In everyday language, we tend to abbreviate words by prefixes. For example, "carbohydrate" is commonly abbreviated by "carb". In this problem, given a set of words, you will find for each word the shortest prefix that uniquely identifies the word it represents.

    In the sample input below, "carbohydrate" can be abbreviated to "carboh", but it cannot be abbreviated to "carbo" (or anything shorter) because there are other words in the list that begin with "carbo".

    An exact match will override a prefix match. For example, the prefix "car" matches the given word "car" exactly. Therefore, it is understood without ambiguity that "car" is an abbreviation for "car" , not for "carriage" or any of the other words in the list that begins with "car".

    Input

    The input contains at least two, but no more than 1000 lines. Each line contains one word consisting of 1 to 20 lower case letters.

    Output

    The output contains the same number of lines as the input. Each line of the output contains the word from the corresponding line of the input, followed by one blank space, and the shortest prefix that uniquely (without ambiguity) identifies this word.

    Sample Input

    carbohydrate
    cart
    carburetor
    caramel
    caribou
    carbonic
    cartilage
    carbon
    carriage
    carton
    car
    carbonate
    

    Sample Output

    carbohydrate carboh
    cart cart
    carburetor carbu
    caramel cara
    caribou cari
    carbonic carboni
    cartilage carti
    carbon carbon
    carriage carr
    carton carto
    car car
    carbonate carbona
    

    Source

    3.思路:

    4.代码:

     1 //2010-05-09
     2 //create by wuzhihui
     3 #include<iostream>
     4 #include <cstdio>
     5 #include <cstdlib>
     6 
     7 
     8 using namespace std;
     9 
    10 #define chars 26
    11 #define MAXCONTENT 1002
    12 #define MAXLENGTH 21
    13 
    14 
    15 typedef struct TrieNode
    16 {
    17     int num;
    18     TrieNode *next[chars];
    19 }TrieNode,*TrieTree;
    20 char str[MAXCONTENT][MAXLENGTH];
    21 
    22 TrieTree root=NULL;
    23 
    24 void insert(char *s)
    25 {
    26      int k=0;
    27      
    28      if(root==NULL)
    29      {
    30          root=(TrieTree)malloc(sizeof(TrieNode));
    31          root->num=0;
    32          for(k=0;k<chars;k++) root->next[k]=NULL;
    33      }
    34      TrieTree p=root;
    35      
    36      int i=0;
    37      int index;
    38      while(s[i]!='')
    39      {
    40         index=s[i]-'a';
    41         if(p->next[index]==NULL) 
    42         {
    43             p->next[index]=(TrieTree)malloc(sizeof(TrieNode));
    44             p->next[index]->num=0;
    45             for(k=0;k<chars;k++) p->next[index]->next[k]=NULL;
    46         }
    47         p=p->next[index];
    48         p->num++;
    49         i++;
    50      }
    51 }
    52 
    53 void search(char *s)
    54 {
    55      int i=0,index;
    56      TrieTree p=root;
    57      while(s[i]!='')
    58      {
    59           index=s[i]-'a';
    60           p=p->next[index];
    61           putchar(s[i]);
    62           if(p->num==1) break;
    63           i++;
    64      }
    65      putchar('
    ');
    66 }
    67 int main()
    68 {
    69     int size=0,i;
    70     //int n=12;
    71     while(scanf("%s",str[size])!=EOF)
    72     //while(n-- && scanf("%s",str[size])!=EOF)
    73     {
    74          insert(str[size]);
    75          size++;
    76     }
    77     for(i=0;i<size;i++)
    78     {
    79        printf("%s ",str[i]);
    80        search(str[i]);
    81     }
    82     //system("pause");
    83     return 0;
    84 }
  • 相关阅读:
    Matlab矩阵填充--Matlab interp2
    Object::connect: No such slot (QT槽丢失问题)
    QT显示框架嵌入Vs控制台工程
    SLAM: 关于Orb_SLAM的使用小综述
    SLAM: Orb_SLAM中的ORB特征
    Ubuntu安装中文语言包
    装X数学:高雅的数学表示
    图像描述:各种维度图像的逻辑描述形式
    Python__configparser模块
    Python__xml模块
  • 原文地址:https://www.cnblogs.com/mobileliker/p/3581257.html
Copyright © 2020-2023  润新知