思路1:根据字母的ASCII表进行转换:
由表格可以看出,对应大小写字母之间相差32,由此可以衍生出以下编程的思路:
程序1.1
#include
using namespace std;
int main()
{
char a[20];
int i = 0;
cout<<"请输入一串字符:\n";
cin>>a;
for(;a[i];i++)
{
if(a[i] >= 'a'&&a[i] <= 'z')
a[i] -= 32;
else if(a[i] >= 'A'&&a[i] <= 'Z')
a[i] += 32;
}
for(i = 0;a[i];i++)
cout<
程序1.2
#include
using namespace std;
void main(void)
{
char i;
cout<<"Input,'#'for an end: "<> i;
if ((i>=65)&&(i<=90))
{
i=i+32;
cout << i;
}
else if((i>=97)&&(i<=122))
{
i=i-32;
cout << i;
}
else
cout << (int)i;
if(i=='#')
break;
}
}
思路2:利用大小写字母转换函数,由此可以衍生出以下几种编程的思路:
程序2.1 简易版
#include
using namespace std;
int main()
{
cout<<(char)toupper(97)<<'\n';
cout<<(char)toupper('a')<<'\n';
cout<<(char)tolower(66)<<'\n';
cout<<(char)tolower('B')<<'\n';
return 0;
}
程序2.2 利用函数strupr、strlwr
#include
#include
using namespace std;
int main(int argc, char* argv[])
{
//声明字符数组
char str[80],*p;
int i;
//转换字符串中的小写为大写
cout<<"将字符串中的小写字母转换为大写"<>str;
p=strupr(str);
cout<<"p:"<>str;
p=strlwr(str);
cout<<"p:"<
程序2.3 利用函数toupper、tolower
#include
#include
#include
using namespace std;
int main()
{
vector vch;
int n;
char elem;
cout<<"请输入大小写字符的个数:";
cin>>n;
cout<<"请输入"<>elem;
vch.push_back(elem);
}
vector::iterator it = vch.begin();
for(it;it != vch.end();++it)
{
if(*it >= 'a'&&(*it) <='z')
*it = toupper(*it);
else if(*it >= 'A'&& (*it) <= 'Z')
*it = tolower(*it);
}
cout<<"大小写转化之后的结果:";
vector::iterator itera = vch.begin();
for(itera;itera != vch.end();++itera)
cout<<*itera;
cout<
程序2.4 利用transform和tolower及toupper进行结合
#include
#include
#include
#include
using namespace std;
int main()
{
cout<<"请输入一个全部大写的字符串:";
string str;
cin>>str;
///转小写
transform(str.begin(),str.end(),str.begin(),tolower);
///transform(wstr.begin(), wstr.end(), wstr.begin(), towlower);
cout<<"转化为小写后为:"<>s;
transform(s.begin(), s.end(), s.begin(), toupper);
///transform(wstr.begin(), wstr.end(), wstr.begin(), towupper);
cout<<"转化为大写后为:"<
程序2.5 注意wmain(),另一种编程方法
#include
#include
#include
#include
#include
using namespace std;
int wmain(int argc, WCHAR* argv[])
{
char ch = 'a';
ch = toupper(ch);
cout<
程序2.6 写成convert函数,利用|=和&=进行变换
#include
#include
using namespace std;
char* convert(char *src)
{
char *p = src;
assert(p != NULL);
while(*p)
{
if ('A' <= *p && *p < 'Z')
*p |= 0x20;
else if ('a' <= *p && *p < 'z')
*p &= ~0x20;
p++;
}
return src;
}
int main()
{
char src;
cin>>src;
convert(&src);
cout<
其中,在用到transform时,可能遇到如下错误提示:
error: no matching function for call to ‘transform(__gnu_cxx::__normal_iterator
这里说明了原因:
The problem is that the version of std::tolower inherited from the C standard library is a non-template function, but there are other versions of std::tolower that are function templates, and it is possible for them to be included depending on the standard library implementation. You actually want to use the non-template function, but there is ambiguity when just tolower is provided as the predicate.
翻译过来就是说,既有C版本的toupper/tolower函数,又有STL模板函数toupper/tolower,二者存在冲突。
解决办法:
在toupper/tolower前面加::,强制指定是C版本的(这时也不要include
#include
#include
#include // transform
using namespace std;
int main()
{
string str = "abcdADcdeFDde!@234";
transform(str.begin(), str.end(), str.begin(), ::toupper);
cout << str << endl;
transform(str.begin(), str.end(), str.begin(), ::tolower);
cout << str << endl;
return 0;
}
关于transform:
transform() 可以将函数应用到序列的元素上,并将这个函数返回的值保存到另一个序列中,它返回的迭代器指向输出序列所保存的最后一个元素的下一个位置。
这个算法有一个版本和 for_each() 相似,可以将一个一元函数应用到元素序列上来改变它们的值,但这里有很大的区别。for_each() 中使用的函数的返回类型必须为 void,而且可以通过这个函数的引用参数来修改输入序列中的值;而 transform() 的二元函数必须返回一个值,并且也能够将应用函数后得到的结果保存到另一个序列中。
不仅如此,输出序列中的元素类型可以和输入序列中的元素类型不同。对于 for_each(),函数总是会被应用序列的元素上,但对于 transform(),这一点无法保证。
第二个版本的 transform() 允许将二元函数应用到两个序列相应的元素上,但先来看一下如何将一元函数应用到序列上。在这个算法的这个版本中,它的前两个参数是定义输入序列的输入迭代器,第 3 个参数是目的位置的第一个元素的输出迭代器,第 4 个参数是一个二元函数。这个函数必须接受来自输入序列的一个元素为参数,并且必须返回一个可以保存在输出序列中的值。
参考:https://blog.csdn.net/JIEJINQUANIL/article/details/51166883