题意:
输入一个文本,找出所有不同的单词,按字典序输出所有单词。
stringstream通常是用来做数据转换的
相比c库的转换,它更加安全,自动和直接
#include
stringstream stream
stream
stream >>value 读取
#include
#include
#include
#include
#in...
分类:
其他好文 时间:
2014-09-22 18:31:43
阅读次数:
165
紫书例题,这道题的例程让我长了知识。以前没有用过cctype和stringstream相关的东西。很实用,值得学习。#include 的函数c++中应该是#include c中应该是#include 以下为字符函数库中常用的函数:函数名称返回值isalnum()如果参数是字母数字,即字母或数字,该函...
分类:
其他好文 时间:
2014-09-18 20:30:44
阅读次数:
275
解题报告
思路:
字典树应用,dfs回溯遍历字典树
#include
#include
#include
using namespace std;
struct node {
int v;
node *next[26];
};
int l,m,cnt;
char str[100],ch[100],dic[5500][100];
node *newnode()
{
...
分类:
其他好文 时间:
2014-07-31 00:05:35
阅读次数:
283
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=17561391360710815Andy's First DictionaryAcceptedC+...
分类:
其他好文 时间:
2014-07-21 08:26:16
阅读次数:
243