当前位置:网站首页>leetcode刷题:字符串01(反转字符串)
leetcode刷题:字符串01(反转字符串)
2022-06-26 20:30:00 【涛涛英语学不进去】
344.反转字符串
编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 char[] 的形式给出。
不要给另外的数组分配额外的空间,你必须原地修改输入数组、使用 O ( 1 ) O(1) O(1) 的额外空间解决这一问题。
你可以假设数组中的所有字符都是 ASCII 码表中的可打印字符。
示例 1:
输入:[“h”,“e”,“l”,“l”,“o”]
输出:[“o”,“l”,“l”,“e”,“h”]
示例 2:
输入:[“H”,“a”,“n”,“n”,“a”,“h”]
输出:[“h”,“a”,“n”,“n”,“a”,“H”]
这题对于刚做完双指针法的四数之和的我来说简直不要太简单
public void reverseString(char[] s) {
//双指针法
int left = 0;
int right = s.length - 1;
while (left < right) {
char temp = s[left];
s[left] = s[right];
s[right] = temp;
left++;
right--;
}
}

没错,一遍AC。强大。
边栏推荐
- MySQL - database creation and management
- 剑指 Offer II 091. 粉刷房子
- Solve com mysql. jdbc. exceptions. jdbc4.MySQLNonTransientConnectionException: Could not create connection
- Muke 11. User authentication and authorization of microservices
- StringUtils判断字符串是否为空
- 0 basic C language (3)
- 0基础学c语言(2)
- swagger:如何生成漂亮的静态文档说明页
- Flutter TextField详解
- Serial port application program based on gd32
猜你喜欢
MongoDB实现创建删除数据库、创建删除表(集合)、数据增删改查

Comment installer la base de données MySQL 8.0 sous Windows? (tutoriel graphique)

Unit test of boot

windows系統下怎麼安裝mysql8.0數據庫?(圖文教程)

抖音实战~分享模块~短视频下载(保存到相册)

回溯思路详解

Tiktok practice ~ sharing module ~ copy short video link

阿里云个人镜像仓库日常基本使用

Muke 11. User authentication and authorization of microservices

云计算技术的发展与芯片处理器的关系
随机推荐
Detailed explanation of retrospective thinking
mysql存储过程
Selection of database paradigm and main code
Muke 11. User authentication and authorization of microservices
清华大学就光刻机发声,ASML立马加紧向中国出口光刻机
Is it safe to open a securities account? Is there any danger
抖音实战~搜索页面~扫描二维码
Invocation failed Unexpected end of file from server
QT两种方法实现定时器
阿里云个人镜像仓库日常基本使用
抖音实战~搜索页面~视频详情
SentinelResource注解詳解
Bonne Recommandation: développer des outils de sécurité pour les terminaux mobiles
Database SQL statement writing
Can I open an account online? Is it safe?
710. 黑名单中的随机数
Web resource preloading - production environment practice
Distributed ID generation system
Tiktok practice ~ sharing module ~ short video download (save to photo album)
Flutter TextField详解