Leetcode No.125 Valid Palindrome(c++实现)
2021/7/31 20:06:20
本文主要是介绍Leetcode No.125 Valid Palindrome(c++实现),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1. 题目
1.1 英文题目
Given a string s, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
1.2 中文题目
给定一个字符串,验证它是否是回文串,只考虑字母和数字字符,可以忽略字母的大小写。
1.3输入输出
输入 | 输出 |
---|---|
s = "A man, a plan, a canal: Panama" | true |
s = "race a car" | false |
1.4 约束条件
- 1 <= s.length <= 2 * 105
- s consists only of printable ASCII characters.
2. 分析
2.1 一般算法
简单粗暴,样例通过,但是测试超时
class Solution { public: bool isPalindrome(string s) { int i = 0, j = s.size() - 1; while (i < j) { while (s[i] < 65 || (s[i] > 90 && s[i] < 97) || s[i] > 122) { ++i; } while (s[j] < 65 || (s[j] > 90 && s[j] < 97) || s[j] > 122) { --j; } int temp = s[i] - s[j]; if (temp != 32 && temp != -32 && temp != 0) { return false; } ++i; --j; } return true; } };
2.2 大神算法
参考:https://leetcode.com/problems/valid-palindrome/discuss/40048/Here's-a-clean-C%2B%2B-solution
class Solution { public: bool isPalindrome(string s) { for (int i = 0, j = s.size() - 1; i < j; i++, j--) { // Move 2 pointers from each end until they collide while (isalnum(s[i]) == false && i < j) i++; // Increment left pointer if not alphanumeric while (isalnum(s[j]) == false && i < j) j--; // Decrement right pointer if no alphanumeric if (toupper(s[i]) != toupper(s[j])) return false; // Exit and return error if not match } return true; } };
注意:isalnum的用法:https://www.cplusplus.com/reference/cctype/isalnum/
这篇关于Leetcode No.125 Valid Palindrome(c++实现)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-24怎么切换 Git 项目的远程仓库地址?-icode9专业技术文章分享
- 2024-12-24怎么更改 Git 远程仓库的名称?-icode9专业技术文章分享
- 2024-12-24更改 Git 本地分支关联的远程分支是什么命令?-icode9专业技术文章分享
- 2024-12-24uniapp 连接之后会被立马断开是什么原因?-icode9专业技术文章分享
- 2024-12-24cdn 路径可以指定规则映射吗?-icode9专业技术文章分享
- 2024-12-24CAP:Serverless?+AI?让应用开发更简单
- 2024-12-23新能源车企如何通过CRM工具优化客户关系管理,增强客户忠诚度与品牌影响力
- 2024-12-23原创tauri2.1+vite6.0+rust+arco客户端os平台系统|tauri2+rust桌面os管理
- 2024-12-23DevExpress 怎么实现右键菜单(Context Menu)显示中文?-icode9专业技术文章分享
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享