105. Construct Binary Tree from Preorder and Inorder Traversal Given preorder and inorder traversal of a …
标签:LeetCode
365. Water and Jug Problem
题意: 给定两个容量分别为x和y升的罐子。提供无限容量的水。你需要判断用这两个罐子是否可以恰好量出z升的体积。到最后量出的z升体积可以由一到两个罐子装着。 允许的操作包括: 1、将任意罐子灌满。 2、将任意罐子清空。 3…
LeetCode 边学python边练算法(持续更新)
LeetCode 边学python边练算法(持续更新) LeetCode 边学python边练算法(持续更新) 1、两数之和 我的代码 知识点 字典 数组 2、两数相加 我的代码 知识点 结构体 3、无重复字符的最长子串…
leetcode 二叉树前序遍历的递归和非递归实现
Given a binary tree, return the preorder traversal of its nodes’ values. For example:Given bin…
LeetCode:48.旋转图像
给定一个 n × n 的二维矩阵表示一个图像。将图像顺时针旋转 90 度。说明:你必须在原地旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要使用另一个矩阵来旋转图像。 示例 1: 给定 matrix = [ [1,…
Leetcode: 665. 非递减数列
作者:Liao_Hong_XiDian 来源:CSDN 原文:https://blog.csdn.net/qq_23523409/article/details/85232742 版权声明:本文为博主原创文章,转载请附上…
LeetCode 137 Single Number II 解题报告
Single Number II Total Accepted: 44725 Total Submissions: 128964 Given an array of integers, every element app…
Leetcode: 665. 非递减数列
作者:Liao_Hong_XiDian 来源:CSDN 原文:https://blog.csdn.net/qq_23523409/article/details/85232742 版权声明:本文为博主原创文章,转载请附上…
LeetCode | Dungeon Game
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon. The dunge…
剑指offer_041 滑动窗口的平均值
题目: 给定一个整数数据流和一个窗口大小,根据该滑动窗口的大小,计算滑动窗口里所有数字的平均值。 实现 MovingAverage 类: MovingAverage(int size) 用窗口大小 size 初始化对象。…
Leetcode:835. 图像重叠
直接找出所有1的位置,然后对两个矩阵的所有这些位置进行求差。然后统计这些差出现最多的次数是多少。 两个座标的差是什么含义?就是把其中一个座标移动到另一个座标需要移动的向量。因此,在遍历过程中,我们找出了A中所有值为1的座…
28. Implement strStr() java
Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not pa…