HDU —1062
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1062
此题利用了reverse反排序函数和find查找函数
代码如下:
#include
#include
#include//算法
using namespace std;
int main()
{
int n,i;
string s;
cin>>n;
getchar();
while(n--)
{
getline(cin,s);
i=0;
while(s.find(" ",i)!=s.npos)//从下标0开始寻找空格
{
reverse(s.begin()+i,s.begin()+s.find(" ",i));//i为找到空格的下标
i=s.find(" ",i)+1;
}
reverse(s.begin()+s.find_last_of(" ",i)+1,s.end());//最后一次空格出现到字符串结束
cout<
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1200
代码如下:
#include
#include
using namespace std;
int main()
{
int n,i,j,k,l,m;
string s;
char z[100][100];
while(cin>>n && n!=0)
{
m=0;
getchar();
getline(cin,s);
l=s.length()/n;
for(i=1;i<=l;i++)
{
if(i%2!=0)
{
for(j=0;j=0;j--)//倒着输出
{
z[i][j]=s[m++];
}
}
}
for(j=0;j
HDU—1321
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1321
利用reverse函数 代码如下:
#include
#include
#include
using namespace std;
int main()
{
string s;
int n;
cin>>n;
getchar();
while(n--)
{
getline(cin,s);
reverse(s.begin(),s.end());
cout<
HDU—1328
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1328
代码如下:
#include
using namespace std;
#include
int main()
{
int n,i,j;
string s;
cin>>n;
getchar();
j=1;
while(n--)
{
getline(cin,s);
for(i=0;i
HDU-1860 没有使用string
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1860
代码如下:
#include
using namespace std;
int main()
{
int a,i,j;
char c[5],s[81];
while(gets(c) && c[0]!='#')
{
gets(s);
for(i=0;i
HDU—2025
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2025
代码如下:#include
#include #include using namespace std; int main() { int i; string s,c; while(getline(cin,s) &&s.size()<=100) { c=s; sort(s.begin(),s.end());//从小到大排序 reverse(s.begin(),s.end());//反排序 for(i=0;i
HDU-2131
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2131
代码如下:#include
#include #include using namespace std; int main() { string str; char a; int i,l,b; while(cin>>a>>str) { l=str.length(); b=0; for(i=0;i ='a'&&str[i]<='z') { if(str[i]==a||str[i]==a+32) { b++; } } else { if(str[i]==a||str[i]==a-32) { b++; } } } cout<