反转一个字符串。
原始问题
https://leetcode.com/problems/reverse-string/
Write a function that takes a string as input and returns the string reversed.
Example:
Given s = “hello”, return “olleh”.
解题思路
直接反向复制即可。
AC代码
C语言
1 | char* reverseString(char* s) { |
反转一个字符串。
https://leetcode.com/problems/reverse-string/
Write a function that takes a string as input and returns the string reversed.
Example:
Given s = “hello”, return “olleh”.
直接反向复制即可。
1 | char* reverseString(char* s) { |
本文标题:LeetCode 344. Reverse String (Easy)
文章作者:高明飞
发布时间:2016-10-25, 19:29:19
最后更新:2021-06-11, 21:45:29
原始链接:https://gaomf.cn/2016/10/25/LeetCode_344/
许可协议: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。