码迷,mamicode.com
首页 >  
搜索关键字:uva10815    ( 14个结果
UVa10815,Andy's First Dictionary, set,stringstream
题意: 输入一个文本,找出所有不同的单词,按字典序输出所有单词。 stringstream通常是用来做数据转换的 相比c库的转换,它更加安全,自动和直接 #include stringstream stream stream stream >>value   读取 #include #include #include #include #in...
分类:其他好文   时间:2014-09-22 18:31:43    阅读次数:165
uva10815(set的应用)
紫书例题,这道题的例程让我长了知识。以前没有用过cctype和stringstream相关的东西。很实用,值得学习。#include 的函数c++中应该是#include c中应该是#include 以下为字符函数库中常用的函数:函数名称返回值isalnum()如果参数是字母数字,即字母或数字,该函...
分类:其他好文   时间:2014-09-18 20:30:44    阅读次数:275
UVa10815_Andy's First Dictionary(小白书字符串专题)
解题报告 思路: 字典树应用,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
UVa10815.Andy's First Dictionary
题目链接: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
14条   上一页 1 2
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!