字符串的处理
文章平均质量分 71
小小海豚
这个作者很懒,什么都没留下…
展开
-
HDU_1256画8
谁画8画的好,画的快,今后就发的快,学业发达,事业发达,祝大家发,发,发. Input输入的第一行为一个整数N,表示后面有N组数据.每组数据中有一个字符和一个整数,字符表示画笔,整数(>=5)表示高度. Output画横线总是一个字符粗,竖线随着总高度每增长6而增加1个字符宽.当总高度从5增加到6时,其竖线宽度从1增长到2.下圈高度不小于上圈高度,但应尽原创 2014-04-30 14:53:04 · 498 阅读 · 0 评论 -
HDU_2074叠筐
需要的时候,就把一个个大小差一圈的筐叠上去,使得从上往下看时,边筐花色交错。这个工作现在要让计算机来完成,得看你的了。 Input输入是一个个的三元组,分别是,外筐尺寸n(n为满足0 Output输出叠在一起的筐图案,中心花色与外筐花色字符从内层起交错相叠,多筐相叠时,最外筐的角总是被打磨掉。叠筐与叠筐之间应有一行间隔。 Sample Input原创 2014-05-05 17:35:39 · 599 阅读 · 0 评论 -
HDU_2087剪花布条
一块花布条,里面有些图案,另有一块直接可用的小饰条,里面也有一些图案。对于给定的花布条和小饰条,计算一下能从花布条中尽可能剪出几块小饰条来呢? Input输入中含有一些数据,分别是成对出现的花布条和小饰条,其布条都是用可见ASCII字符表示的,可见的ASCII字符有多少个,布条的花纹也有多少种花样。花纹条和小饰条不会超过1000个字符长。如果遇见#字符,则不再进行工作。原创 2014-05-05 20:22:46 · 415 阅读 · 0 评论 -
HDU_2131Probability
Mickey is interested in probability recently. One day , he played a game which is about probability with mini.First mickey gives a letter and a word to mini.Then mini calculate the probability that th原创 2014-05-05 21:32:08 · 599 阅读 · 0 评论 -
总结关于字符串的函数
strcpy原型:extern char *strcpy(char *dest,char *src);用法:#include 功能:把src所指由NUL结束的字符串复制到dest所指的 中。返回指向dest结尾处字符(NUL)的指针。原创 2014-04-16 20:37:37 · 488 阅读 · 0 评论 -
NYOJ305_表达式求值
描述 Dr.Kong设计的机器人卡多掌握了加减法运算以后,最近又学会了一些简单的函数求值,比如,它知道函数min(20,23)的值是20 ,add(10,98) 的值是108等等。经过训练,Dr.Kong设计的机器人卡多甚至会计算一种嵌套的更复杂的表达式。假设表达式可以简单定义为:1. 一个正的十进制数 x 是一个表达式。2. 如果 x 和 y 是 表达式,则 函数min(x,y原创 2014-05-15 20:59:55 · 541 阅读 · 0 评论 -
nyoj_290动物统计加强版
在美丽大兴安岭原始森林中存在数量繁多的物种,在勘察员带来的各种动物资料中有未统计数量的原始动物的名单。科学家想判断这片森林中哪种动物的数量最多,但是由于数据太过庞大,科学家终于忍受不了,想请聪明如你的ACMer来帮忙。输入第一行输入动物名字的数量N(1<= N <= 4000000),接下来的N行输入N个字符串表示动物的名字(字符串的长度不超过10,字符串全为小写字母,并且只有一组测试数据)。原创 2014-04-26 10:50:39 · 465 阅读 · 0 评论 -
HDU_1161Eddy's mistakes
Eddy usually writes articles ,but he likes mixing the English letter uses, for example "computer science" is written frequently "coMpUtEr scIeNce" by him, this mistakes lets Eddy's English teacher be原创 2014-04-27 20:26:48 · 650 阅读 · 0 评论 -
HDU-1088Write a simple HTML Browser
If you ever tried to read a html document on a Macintosh, you know how hard it is if no Netscape is installed.Now, who can forget to install a HTML browser? This is very easy because most of the t原创 2014-04-26 17:20:23 · 516 阅读 · 0 评论 -
HDU_1020Encoding
Given a string containing only 'A' - 'Z', we could encode it using the following method:1. Each sub-string containing k same characters should be encoded to "kX" where "X" is the only character原创 2014-04-12 21:38:38 · 421 阅读 · 0 评论 -
HDU_1039Easier Done Than Said?
Password security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are often insecure. Some sites use random computer-generated passwords (li原创 2014-04-13 15:05:58 · 399 阅读 · 0 评论 -
HDU-1200To and Fro
Mo and Larry have devised a way of encrypting messages. They first decide secretly on the number of columns and write the message (letters only) down the columns, padding with extra random letters so原创 2014-04-28 20:54:41 · 433 阅读 · 0 评论 -
HDU_2052Picture
Give you the width and height of the rectangle,darw it. InputInput contains a number of test cases.For each case ,there are two numbers n and m (0 OutputFor each case,you should draw原创 2014-05-03 15:27:18 · 424 阅读 · 0 评论 -
HDU_2026首字母变大写
输入一个英文句子,将每个单词的第一个字母改成大写字母。 Input输入数据包含多个测试实例,每个测试实例是一个长度不超过100的英文句子,占一行。 Output请输出按照要求改写后的英文句子。 Sample Inputi like acmi want to get an accepted Sample Output原创 2014-05-03 14:50:45 · 410 阅读 · 0 评论 -
HDU_1321Reverse Text
In most languages, text is written from left to right. However, there are other languages where text is read and written from right to left. As a first step towards a program that automatically transl原创 2014-04-30 20:31:46 · 573 阅读 · 0 评论 -
HDU_1328IBM Minus One
You may have heard of the book '2001 - A Space Odyssey' by Arthur C. Clarke, or the film of the same name by Stanley Kubrick. In it a spaceship is sent from Earth to Saturn. The crew is put into stasi原创 2014-04-30 21:15:31 · 443 阅读 · 0 评论 -
HDU_1073Online Judge
Ignatius is building an Online Judge, now he has worked out all the problems except the Judge System. The system has to read data from correct output file and user's result file, then the system compa原创 2014-04-16 19:27:56 · 468 阅读 · 0 评论 -
HDU_1804Deli Deli
Mrs. Deli is running the delicatessen store "Deli Deli". Last year Mrs. Deli has decided to expand her business and build up an online store. She has hired a programmer who has implemented the online原创 2014-05-02 15:57:42 · 718 阅读 · 0 评论 -
HDU_1062Text Reverse
Ignatius likes to write words in reverse way. Given a single line of text which is written by Ignatius, you should reverse all the words and then output them. InputThe input contains several原创 2014-04-16 14:47:14 · 515 阅读 · 0 评论 -
HDU_1043Eight
The 15-puzzle has been around for over 100 years; even if you don't know it by that name, you've seen it. It is constructed with 15 sliding tiles, each with a number from 1 to 15 on it, and all packed原创 2014-04-15 20:52:42 · 450 阅读 · 0 评论 -
HDU_1860统计字符
统计一个给定字符串中指定的字符出现的次数 Input测试输入包含若干测试用例,每个测试用例包含2行,第1行为一个长度不超过5的字符串,第2行为一个长度不超过80的字符串。注意这里的字符串包含空格,即空格也可能是要求被统计的字符之一。当读到'#'时输入结束,相应的结果不要输出。 Output对每个测试用例,统计第1行中字符串的每个字符在第2行字符串中出现的次数,按原创 2014-05-02 19:31:02 · 578 阅读 · 0 评论 -
HDU_2025查找最大元素
对于输入的每个字符串,查找其中的最大字母,在该字母后面插入字符串“(max)”。 Input输入数据包括多个测试实例,每个实例由一行长度不超过100的字符串组成,字符串仅由大小写字母构成。 Output对于每个测试实例输出一行字符串,输出的结果是插入字符串“(max)”后的结果,如果存在多个最大的字母,就在每一个最大字母后面都插入"(max)"。原创 2014-05-03 14:38:21 · 419 阅读 · 0 评论 -
HDU_2043密码
网上流传一句话:"常在网上飘啊,哪能不挨刀啊~"。其实要想能安安心心地上网其实也不难,学点安全知识就可以。首先,我们就要设置一个安全的密码。那什么样的密码才叫安全的呢?一般来说一个比较安全的密码至少应该满足下面两个条件:(1).密码长度大于等于8,且不要超过16。(2).密码中的字符应该来自下面“字符类别”中四组中的至少三组。这四个字符类别分别为:1.大写字母:A,原创 2014-05-03 15:11:19 · 623 阅读 · 0 评论 -
HDU_2072单词数
lily的好朋友xiaoou333最近很空,他想了一件没有什么意义的事情,就是统计一篇文章里不同单词的总数。下面你的任务是帮助xiaoou333解决这个问题。 Input有多组数据,每组一行,每组就是一篇小文章。每篇小文章都是由小写字母和空格组成,没有标点符号,遇到#时表示输入结束。 Output每组只输出一个整数,其单独成行,该整数代表一篇文章里不同单词的总数。原创 2014-05-04 10:49:09 · 546 阅读 · 0 评论 -
HDU_2024C语言合法标识符
输入一个字符串,判断其是否是C的合法标识符。 Input输入数据包含多个测试实例,数据的第一行是一个整数n,表示测试实例的个数,然后是n行输入数据,每行是一个长度不超过50的字符串。 Output对于每组输入数据,输出一行。如果输入数据是C的合法标识符,则输出"yes",否则,输出“no”。 Sample Input312ajff原创 2014-05-03 14:17:12 · 464 阅读 · 0 评论 -
字符串全排列(字母序)
对于字符串的全排列,例如输入 a b c,输出 6 a b c a c b b a c b c a c a b c b a 代码: #include #include #include char ans[362900][10]; int count = 0; void swap(char *a,char *原创 2014-05-21 09:12:58 · 1929 阅读 · 0 评论