反转字符串 旧城等待, 2024-04-05 06:55 105阅读 0赞 ### 344. 反转字符串 ### > 编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 s 的形式给出。 > 不要给另外的数组分配额外的空间,你必须原地修改输入数组、使用 O(1) 的额外空间解决这一问题。 ##### 示例 1: ##### > 输入:s = \[“h”,“e”,“l”,“l”,“o”\] > 输出:\[“o”,“l”,“l”,“e”,“h”\] #### 示例 2: #### > 输入:s = \[“H”,“a”,“n”,“n”,“a”,“h”\] > 输出:\[“h”,“a”,“n”,“n”,“a”,“H”\] public class str_overturn { public static void main(String[] args) { // TODO 自动生成的方法存根 char [] s = { 'h','e','l','l','o'}; for(int i = 0; i < s.length; i++) System.out.print(s[i]); System.out.println(); reverseString(s); } public static void reverseString(char[] s) { int n = s.length - 1; int i = 0; char mid; while(i<n) { mid = s[i]; s[i] = s[n]; s[n] = mid; i++; n--; } for(int i1 = 0; i1 < s.length; i1++) System.out.print(s[i1]); } } ##### 提示: ##### 1 <= s.length <= 105 s[i] 都是 ASCII 码表中的可打印字符 来源:力扣(LeetCode) 链接:[https://leetcode.cn/problems/reverse-string][https_leetcode.cn_problems_reverse-string] 仅供学习参考 [https_leetcode.cn_problems_reverse-string]: https://leetcode.cn/problems/reverse-string
相关 反转字符串 344. 反转字符串 > 编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 s 的形式给出。 > 不要给另外的数组分配额外的空间,你必须原地修改输入数 旧城等待,/ 2024年04月05日 06:55/ 0 赞/ 106 阅读
相关 反转字符串 如何利用python实现字符串的反转。 1 问题 编写一个函数,其作用是将输入的字符串反转过来。输入=\[”h”,”e”,”l”,”l”,”o”\],输出=\[”o”, 拼搏现实的明天。/ 2024年03月23日 22:09/ 0 赞/ 140 阅读
相关 字符串反转 include "string" include "stdio.h" include "iostream" using namespace st 淡淡的烟草味﹌/ 2022年09月24日 12:23/ 0 赞/ 264 阅读
相关 反转字符串 public static void reverse(char[] a) { if (a != null) { int len = a.len 一时失言乱红尘/ 2022年08月11日 07:59/ 0 赞/ 286 阅读
相关 字符串反转 int StringReverse(char str[], int length) { if (str==NULL) { ﹏ヽ暗。殇╰゛Y/ 2022年08月04日 00:43/ 0 赞/ 350 阅读
相关 字符串反转 问题及代码: / Copyright (c)2016,烟台大学计算机与控制工程学院 All rights reserved. 太过爱你忘了你带给我的痛/ 2022年07月29日 08:45/ 0 赞/ 326 阅读
相关 字符串反转 1. 使用Array.Reverse方法 对于字符串反转,我们可以使用.NET类库自带的Array.Reverse方法 public static strin ╰+哭是因爲堅強的太久メ/ 2022年05月28日 01:46/ 0 赞/ 417 阅读
相关 字符串反转 //将字符串的前一段移到字符串最后 /\ 比如,字符串"abcdefg"将"abc"移到最后成为"defgabc"; 主要思想是: 1、将前面一部分反转 2 川长思鸟来/ 2022年05月12日 01:36/ 0 赞/ 373 阅读
相关 字符串反转 字符串反转。 好了,既然找不到也不必耿耿于怀了。今天读了《高效能程序员的修炼》第四章,发现自己好烂,如果按照作者的看法,我是无论如何都入不了他的法眼 谁践踏了优雅/ 2021年06月24日 14:00/ 0 赞/ 729 阅读
相关 反转字符串 ![watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhp 末蓝、/ 2021年06月10日 20:38/ 0 赞/ 698 阅读
还没有评论,来说两句吧...