文章作者:Tyan 博客:noahsnail.com | CSDN | 简书 1. 问题描述 Design a stack that supports push, pop,…
标签:LeetCode
LeetCode算法题-Image Smoother(Java实现)
这是悦乐书的第282次更新,第299篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第150题(顺位题号是661)。给定表示图像灰度的2D整数矩阵M,您需要设计一个平滑器以使每个单元的灰度变为…
balanced-binary-tree
描述: Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree i…
2018-09-11 558. Quad Tree Intersection
题意:给你一个Quad Tree概念,然后给两个Quad Tree,求这两个Quad Tree的或(OR) 解题思路:或的基本概念是一真即真,全假即假。 注意事项: 第一、A真返回A;B真返回B;A假返回B;B假返回A;…
73. Set Matrix Zeroes
/* * 73. Set Matrix Zeroes QuestionEditorial Solution My Submissions Total Accepted: 70785 Total Submissions: …
leetcode122.买卖股票的最佳时机 II
给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。 设计一个算法来计算你所能获取的最大利润。你可以尽可能地完成更多的交易(多次买卖一支股票)。 注意:你不能同时参与多…
Leetcode: 130. Surrounded Region(Week7, Medium)
注: 本题使用BFS算法求解 Leetcode 130 Given a 2D board containing ‘X’ and ‘O’ (the letter O), capture all regions surrou…
[LeetCode] Maximum Depth of Binary Tree
链接:https://leetcode.com/submissions/detail/136407355/ 难度:Easy 题目:104. Maximum Depth of Binary Tree Given a bin…
LeetCode算法题-To Lower Case(Java实现)
这是悦乐书的第301次更新,第320篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第169题(顺位题号是709)。实现具有字符串参数str的函数ToLowerCase():以小写形式返回相同…
2018-06-20 108. Convert Sorted Array to Binary Search Tree
题意:给你一个已排序的vector,要求吧vector转换成二叉搜索树,且该二叉搜索树是高度平衡树。 解题思路:使用递归的办法,中间的数就是根节点,左边的一半组成左子树,右边的一半组成右子树,然后对左半vector和右半…
404. Sum of Left Leaves
My Submissions Total Accepted: 11811 Total Submissions: 25597 Difficulty: Easy Contributors: Admin Find the su…
【LeetCode】字符串低级算法-考证回文字符串
问题形貌 考证回文字符串给定一个字符串,考证它是不是是回文串,只斟酌字母和数字字符,能够疏忽字母的大小写。 申明:本题中,我们将空字符串定义为有用的回文串。 示例 1: 输入: "A man, a plan, a can…