题目
Write a function that takes a string as input and returns the string reversed.
Example:
|
问题陈述:
字符串翻转
题目思路:
- 反向遍历,输入到另一个string中,复杂度$O(n)$
- 看了tag中有two pointers,一个从前往后一个从后往前,交换数值,复杂度减少一半$O(n/2)$
算法复杂度:O(n)
代码:
|
|
结果
Write a function that takes a string as input and returns the string reversed.
Example:
|
字符串翻转
算法复杂度:O(n)
|
|