字符串
陌初
我们原本便是陌生人,一如初见。
展开
-
CodeForces 489C Given Length and Sum of Digits...
题目链接 :http://codeforces.com/problemset/problem/489/C Description You have a positive integer m and a non-negative integer s. Your task is to find the smallest and the largest of the numbe原创 2015-02-10 20:56:21 · 515 阅读 · 0 评论 -
CodeForces 118A. String Task
题目:http://codeforces.com/problemset/problem/118/A 题意: 输入一段字符串,要求: 1. 删除所有的元音, 2. 插入一个字符” . “在每个辅音之前原创 2015-03-25 20:14:37 · 602 阅读 · 0 评论 -
POJ 1051 P,MTHBGWB
题目链接:http://poj.org/problem?id=1051 P,MTHBGWB Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 7509 Accepted: 4318 Description Morse code rep原创 2015-05-18 13:54:08 · 410 阅读 · 0 评论 -
HDU 1106 排序
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1106 题意很清晰啦,中文题,仔细读题就可以了!!!还有思路清晰 #include #include #include #include #include using namespace std; char a[1005]; int main() { int i,j,b[1原创 2015-09-02 22:13:56 · 386 阅读 · 0 评论 -
hdu4690 EBCDIC
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4690 EBCDIC Problem Description A mad scientist found an an原创 2015-08-19 16:08:27 · 615 阅读 · 0 评论 -
常用字符串操作函数
转自:http://blog.sina.com.cn/s/blog_586b6c050100e0kv.html 函数名: stpcpy 功 能: 拷贝一个字符串到另一个 用 法: char *stpcpy(char *destin, char *source); 程序例: #include #include int main(void) { char s转载 2017-01-07 15:12:04 · 279 阅读 · 0 评论 -
string类字符串方法
转自:http://www.cnblogs.com/mr-wid/archive/2013/01/21/2870575.html 一、string类字符串的介绍 在程序设计中, 字符串的使用十分频繁, C语言类型字符串(简称C-串)在使用与字符串的处理上较为复杂, C++为了在程序设计中更加方便的使用字符串特新增了一种string类型的字符串。 string类字符串为STL(St转载 2017-01-07 15:37:03 · 670 阅读 · 0 评论