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

[二分查找]Compound Words uva10391

編輯:C++入門知識

Problem E: Compound Words

You are to find all the two-word compound words in a dictionary. A two-word compound word is a word in the dictionary that is the concatenation of exactly two other words in the dictionary.

Input

Standard input consists of a number of lowercase words, one per line, in alphabetical order. There will be no more than 120,000 words.

Output

Your output should contain all the compound words, one per line, in alphabetical order.

Sample Input

a
alien
born
less
lien
never
nevertheless
new
newborn
the
zebra

Sample Output

alien
newborn

題意:給出一系列單詞,找出由其中兩個單詞復合組成的單詞。直接排序然後二分查找了。

#include
#include
#include

using namespace std;

int k;
string st[120005];

bool cmp(string x,string y)
{
    return xstr)
        {
            right=mid-1;
        }
        else return 1;
    }
    return 0;
}

int main()
{
    string str;
    int i,j;
    k=0;
    while(getline(cin,str))
    {
        st[k++]=str;
    }
    sort(st,st+k,cmp);
    //cout<

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