习题5-5 复合词(Compound Words, UVa 10391)

该程序使用C++解决UVa在线判题平台上的10391题,通过拆分字符串查找复合词。程序首先读取一组单词,然后检查每个单词是否能由两个已知的子单词组成。如果可以,就输出这个复合词。
摘要由CSDN通过智能技术生成
#include <iostream>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <algorithm>
#include <sstream>
#include <utility>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cctype>
//#include "ChenHC.h"
#define CLOSE() ios::sync_with_stdio(false)
#define CLEAR(a, b) memset(a, b, sizeof(a))
#define IN() freopen("in.txt", "r", stdin)
#define OUT() freopen("out.txt", "w", stdout)
const int maxn = 1e5 + 5;
using LL = long long;
using UI = unsigned int;
using namespace std;
//------------------------------------------------------------------------------------------//
//直接组合超时,改用拆分的思想就能过。
set<string> word;

int main() {
	string s;
	while (cin >> s) word.insert(s);
	int beg = 0;
	string s1, s2;
	for (auto i &#
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值