字符串
ss
★漂浮ing☆
奋斗ing
展开
-
Anagrams
点这里 思路: 先比较两个字符串的长度,不相等直接输出N,,;都转化成小写字母,再把两个字符串从小到大排序,最后用strcmp函数比较,如果为0输出Y,否则输出N。 #include <bits/stdc++.h> using namespace std; char a[100],b[100],t; int main() { ios::sync_with_stdio(false); int i,j,len1,len2; cin>>a; cin&原创 2020-07-24 10:27:51 · 139 阅读 · 0 评论 -
isalpha、isalnum、islower、isupper等字符函数
1.isalpha isalpha()用来判断一个字符是否为字母,如果是字符则返回非零,否则返回零。 cout << isalpha('a');//返回非零 cout << isalpha('2');//返回0 2.isalnum isalnum()用来判断一个字符是否为数字或者字母,也就是说判断一个字符是否属于a~z||A~Z||0~9。 cout...原创 2020-04-08 11:42:09 · 803 阅读 · 0 评论 -
完美的代价(回文字符串)
问题描述 回文串,是一种特殊的字符串,它从左往右读和从右往左读是一样的。小龙龙认为回文串才是完美的。现在给你一个串,它不一定是回文的,请你计算最少的交换次数使得该串变成一个完美的回文串。 交换的定义是:交换两个相邻的字符 例如mamad 第一次交换 ad : mamda 第二次交换 md : madma 第三次交换 ma : madam (回文!完美!) 输入格式 ...原创 2020-03-31 11:14:14 · 768 阅读 · 0 评论 -
数的读法
问题描述 Tom教授正在给研究生讲授一门关于基因的课程,有一件事情让他颇为头疼:一条染色体上有成千上万个碱基对,它们从0开始编号,到几百万,几千万,甚至上亿。 比如说,在对学生讲解第1234567009号位置上的碱基时,光看着数字是很难准确的念出来的。 所以,他迫切地需要一个系统,然后当他输入12 3456 7009时,会给出相应的念法: 十二亿三千四百五十六万七千零九 用汉...原创 2020-03-26 20:25:33 · 434 阅读 · 0 评论 -
strcmp字符串比较函数strupr、strlwr
int strcmp(char *str1,char * str2); 函数strcmp的功能是比较两个字符串的大小。也就是把字符串str1和str2从首字符开始逐个字符的进行比较,直到某个字符不相同或者其中一个字符串比较完毕才停止比较。字符的比较为ASCII码的比较。 若字符串1大于字符串2,返回结果大于零;若字符串1小于字符串2,返回结果小于零;若字符串1等于字符串2,返回结果等于 st...原创 2020-03-25 23:45:14 · 794 阅读 · 0 评论 -
括号匹配(栈)
C. Unusual Competitions time limit per test 1 second memory limit per test 512 megabytes input standard input output standard output A bracketed sequence is called correct (regular) if by ins...原创 2020-03-10 12:12:25 · 200 阅读 · 0 评论 -
CodeCraft-20 B. String Modification
Vasya has a stringssof lengthnn. He decides to make the following modification to the string: Pick an integerkk, (1≤k≤n1≤k≤n). Foriifrom11ton−k+1n−k+1, reverse the substrings[i:i+k−1]s[i:i...原创 2020-03-05 16:58:04 · 237 阅读 · 0 评论 -
Codeforces Round #303B. Equidistant String
time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Little Susie loves strings. Today she calculates distances between them. As Susie is a smal...原创 2020-03-05 15:25:39 · 193 阅读 · 0 评论 -
kmp(next数组的应用)
It's time for music! A lot of popular musicians are invited to join us in the music festival. Each of them will play one of their representative songs. To make the programs more interesting and challe...原创 2019-10-31 21:56:45 · 206 阅读 · 0 评论