码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] 709. To Lower Case

时间:2019-08-05 15:55:39      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:and   param   output   tput   esc   love   input   循环   for循环   

Description

Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.

Example 1:

Input: "Hello"
Output: "hello"

Example 2:

Input: "here"
Output: "here"

Example 3:

Input: "LOVELY"
Output: "lovely"

Analyse

将字符串全变成小写的,简单题

for循环字符串内每个字符,如果是大写字母则变成小写字母,通过ASCII的方式

A   65
Z   90
a   97
z   122
string toLowerCase(string str)
{
    for (int i = 0; i < str.length(); i++)
    {
        if ( 'A' <= str[i] && str[i] <= 'Z')
        {
            str[i] = str[i] + ('a' - 'A');
            //str[i] = str[i] + 32;
            //str[i] = str[i] | 32; //32的二进制是0010 0000, str[i] | 32是把str[i]代表32的那个二进制位变成1,那个位如果原来为0和32与运算相当于+32
        }
    }
    return str;
}

[LeetCode] 709. To Lower Case

标签:and   param   output   tput   esc   love   input   循环   for循环   

原文地址:https://www.cnblogs.com/arcsinw/p/11303250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!