剑指 Offer 39. 数组中出现次数超过一半的数字 地址:剑指 Offer 39. 数组中出现次数超过一半的数字 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。 你可以假设数组是非空的,并且给定的数组总是存在多数元素。 示例 1: 输入: [1, 2, 3, 2, 2, 2, 5 ...
分类:
编程语言 时间:
2021-01-18 10:36:12
阅读次数:
0
此博客链接: 可被5整除的二进制 题目链接:https://leetcode-cn.com/problems/binary-prefix-divisible-by-5/ 题目 给定由若干 0 和 1 组成的数组 A。我们定义 N_i:从 A[0] 到 A[i] 的第 i 个子数组被解释为一个二进制数 ...
分类:
其他好文 时间:
2021-01-15 11:55:58
阅读次数:
0
题目 本题目一开始想要通过二叉树遍历KMP匹配,但看来实现比较复杂 不如直接暴力匹配,本题和LeetCode100.相同的树有共通之处 1 class Solution { 2 public: 3 bool isSubtree(TreeNode* s, TreeNode* t) { 4 if(!s ...
分类:
其他好文 时间:
2021-01-12 11:17:21
阅读次数:
0
此博客链接: 买卖股票的最佳时机 题目链接:https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/ 题目 给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。 如果你最多只允许完成一笔交易(即买入和卖出一支股票一 ...
分类:
其他好文 时间:
2021-01-12 10:51:05
阅读次数:
0
Problem LeetCode Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. Example 1: Input: root = [3,1,4,null ...
分类:
编程语言 时间:
2021-01-11 10:45:32
阅读次数:
0
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14238798.html 较大分组的位置 题目链接:https://leetcode-cn.com/problems/positions-of-large-groups/ 在一个由小写字母构成的字符串 s 中 ...
分类:
其他好文 时间:
2021-01-08 10:32:29
阅读次数:
0
package LeetCode_605 /** * 605. Can Place Flowers * https://leetcode.com/problems/can-place-flowers/ * You have a long flowerbed in which some of the ...
分类:
其他好文 时间:
2021-01-07 12:22:39
阅读次数:
0
package LeetCode_1184 /** * 1184. Distance Between Bus Stops * https://leetcode.com/problems/distance-between-bus-stops/ * A bus has n stops numbered ...
分类:
其他好文 时间:
2021-01-07 12:12:35
阅读次数:
0
题目:https://leetcode-cn.com/problems/longest-palindromic-substring/ 给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s 的最大长度为 1000 我的是暴力解法,最终勉强通过了第一次答案: 通过遍历从头到尾的所有字符串来比较 ...
分类:
其他好文 时间:
2021-01-06 12:31:44
阅读次数:
0
175. 组合两个表 地址:https://leetcode-cn.com/problems/combine-two-tables/ //表1: Person // + + + //| 列名 | 类型 | //+ + + //| PersonId | int | //| FirstName | va ...
分类:
其他好文 时间:
2021-01-06 12:09:24
阅读次数:
0