上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 28 下一页
摘要: 链接:https://leetcode-cn.com/problems/container-with-most-water/ 思路 双指针法 代码 class Solution { public int maxArea(int[] height) { int ans = 0; for (int i 阅读全文
posted @ 2020-06-12 16:49 景云ⁿ 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/regular-expression-matching/ 代码 class Solution { public boolean isMatch(String s, String p) { int sl = s.length(); 阅读全文
posted @ 2020-06-02 16:40 景云ⁿ 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/palindrome-number/ 代码 class Solution { public boolean isPalindrome(int x) { if (x < 0 || (x % 10 == 0 && x != 0)) 阅读全文
posted @ 2020-06-02 16:16 景云ⁿ 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/string-to-integer-atoi/ 代码 class Solution { public int myAtoi(String str) { char[] chars = str.toCharArray(); int 阅读全文
posted @ 2020-06-02 16:00 景云ⁿ 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/reverse-integer/ 代码 class Solution { public int reverse(int x) { int ans = 0; while (x != 0) { int tmp = x % 10 + 阅读全文
posted @ 2020-06-02 15:26 景云ⁿ 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/zigzag-conversion/ 思路 0 6 12 1 5 7 11 .. 2 4 8 10 3 9 观察可以得到,第一行和最后一行为公是2 * (numRows - 1)的等差数列,首项为0和numRows - 1; 对 阅读全文
posted @ 2020-06-02 15:12 景云ⁿ 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/longest-palindromic-substring/ 思路:中心扩散法 长度为奇数的回文子串中心有一个元素; 长度为偶数的回文子串中心有两个元素; 代码 class Solution { public String lo 阅读全文
posted @ 2020-06-02 12:52 景云ⁿ 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/median-of-two-sorted-arrays/ 思路 将该问题转换为求第(m + n) / 2小的数即为中位数。 1.假设m和n均大于k / 2,则各取前k / 2个元素。 若nums1[k / 2 - 1] > nu 阅读全文
posted @ 2020-06-01 22:23 景云ⁿ 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ 思路 定义两个指针i和j,表示当前扫描的字串为i到j区间。使用HashMap对其进行存储。 寻找当前字母出现的上一次位置,比较得到最 阅读全文
posted @ 2020-06-01 21:22 景云ⁿ 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/add-two-numbers/ 思路 使用正常的数学加法思路,对l1和l2分别进行遍历,数字相加并提取进位放入新的链表中。 代码 /** * Definition for singly-linked list. * publi 阅读全文
posted @ 2020-06-01 19:19 景云ⁿ 阅读(75) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 28 下一页