LeetCode刷题之字符串

Posted roscangjie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode刷题之字符串相关的知识,希望对你有一定的参考价值。

第一题:反转字符串

示例:
输入:["h","e","l","l","o"]
输出:["o","l","l","e","h"]

来源:点击这里

答案:简单
void reverseString(char* s, int sSize){
int j=sSize-1;
for (int i=0;i<sSize/2;){
char temp = s[i];
s[i] = s[j];
s[j] = temp;
i++;
j--;
}
}

第二题:

示例:

来源:点击这里

答案

第三题:

示例:

来源:点击这里

答案

第四题:

示例:

来源:点击这里

答案

第五题:

示例:

来源:点击这里

答案

以上是关于LeetCode刷题之字符串的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode刷题之字符串

leetcode刷题之Longest Common Prefix(14)

leetcode刷题之回溯法

LeetCode刷题之数组复习

leetcode刷题之Two Sum

LeetCode刷题之搜索(Java)