Search a 2D Matrix I Write an efficient algorithm that searches for a value in an m x n matrix. This matrix ha…
分类:LeetCode
【leetcode】54. Spiral Matrix 矩阵的螺旋圈向内顺序展开为一维
1. 题目 Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.…
LeetCode算法题-Contains Duplicate(Java实现)
这是悦乐书的第192次更新,第196篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第52题(顺位题号是217)。给定一个整数数组,查找数组是否包含任何重复项。如果数组中至少出现两次值,则函数…
Leetcode PHP题解--D11 461. Hamming Distance
461. Hamming Distance 题目链接 461. Hamming Distance 题目分析 本题要求计算汉明距离。 汉明距离是使用在数据传输差错控制编码里面的,汉明距离是一个概念,它表示两个(相同长度)字…
LeetCode算法题-Construct the Rectangle(Java实现)
这是悦乐书的第243次更新,第256篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第110题(顺位题号是492)。对于Web开发人员,了解如何设计网页的大小非常重要。因此,给定一个特定的矩形…
LeetCode算法题-Flood Fill(Java实现)
这是悦乐书的第306次更新,第325篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第173题(顺位题号是733)。图像由二维整数数组表示,每个整数表示图像的像素值(从0到65535)。给定表…
[LeetCode By Go 99]374. Guess Number Higher or Lower
题目 We are playing the Guess Game. The game is as follows: I pick a number from 1 to n. You have to guess which…
[LeetCode] Solve the Equation 解方程
Solve a given equation and return the value of x in the form of string “x=#value”…
LeetCode | String to Integer (atoi)
题目: Implement atoi to convert a string to an integer. Hint: Carefully consider all possible inp…
LeetCode | Candy(分糖果问题)
There are N children standing in a line. Each child is assigned a rating value. You are giving candi…
LeetCode | Path Sum(路径和)
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the value…
LeetCode算法题-N-ary Tree Postorder Traversal(Java实现)
这是悦乐书的第269次更新,第283篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第136题(顺位题号是590)。给定一个n-ary树,返回其节点值的后序遍历。例如,给定一个3-ary树: …