leetcode9】的更多相关文章

leetcode-9.回文数(水仙花数) 题意:给定整数,判断是否是水仙花数(回文数),返回判断结果 算法: 1.判断负数, 如果是负数直接返回false 2.将整数逐位拆解,用数组存储 3.遍历数组,若本位与后面对应位不等返回false. Code class Solution { public: bool isPalindrome(int x) { ) return false;//负数,直接返回false +];//数组,用于存储数字每一位 ; bool flag = true; whil…
题目描述: 解题思路: 求回文数,并且要求不能使用额外的空间.思路很简单,算出x的倒置数reverse,比较reverse是否和x相等就行了. Java代码: public class LeetCode9 { public static void main(String[] args) { int x=1221; System.out.println(x+"是否是回文数:"+new Solution2().isPalindrome(x)); } } class Solution2 {…
题意: Determine whether an integer is a palindrome. Do this without extra space.  (Easy) 分析: 自己考虑的方法是利用Reverse Integer,然后查看rev与x是否相等,注意负数和0的判断(这里WA了一次) 代码1: class Solution { private: int reverse(int x) { ; ) { ; x /= ; result = result * + temp; if (res…
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121 Output: true Example 2: Input: -121 Output: false Explanation: From left to right, it reads -121. From right to…
题目链接:https://leetcode-cn.com/problems/palindrome-number/ 判断一个整数是否是回文数.回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数. 示例 1: 输入: 121 输出: true 示例 2: 输入: -121 输出: false 解释: 从左向右读, 为 -121 . 从右向左读, 为 121- .因此它不是一个回文数. 示例 3: 输入: 10 输出: false 解释: 从右向左读, 为 01 .因此它不是一个回文数. 进…
public class Solution { public bool IsPalindrome(int x) { ) { return false; } var str = x.ToString(); var list = new List<string>(); foreach (var c in str) { list.Add(c.ToString()); } var count = list.Count; ; i < list.Count; i++) { var n1 = list…
题目描述 Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121 Output: true Example 2: Input: -121 Output: false Explanation: From left to right, it reads -121. From rig…
Problem: Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to string, note the restriction of…
本周我们继续来看5道磨人的小妖精,图解leetcode6-10- 多说一句,leetcode10 杀死了233酱不少脑细胞... 另: 沉迷算法,无法自拔.快来加入我们吧! 别忘了233酱的一条龙服务: 公众号文章题解 -> 私信答疑 -> 刷题群答疑 -> 视频讲解 我们的目的是成为套路王- 嘿嘿,广告完毕 , Let's go! leetcode6: Z 字形变换 题目描述: 将一个给定字符串根据给定的行数,以从上往下.从左到右进行 Z 字形排列. 题目示例: 输入: s = &qu…