这是悦乐书的第260次更新,第273篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第127题(顺位题号是558)。四叉树是树数据,其中每个内部节点恰好有四个子节点:topLeft,topRi…
分类:LeetCode
[剑指offer] 把二叉树打印成多行
本文首发于我的个人博客:尾尾部落 题目描述 从上到下按层打印二叉树,同一层结点从左至右输出。每一层输出一行。 解题思路 就是二叉树的层序遍历,用队列来实现。我们需要两个变量,一个start记录当前层已经打印的节点个数,一…
LeetCode 104 Maximum Depth of Binary Tree
题目描述 Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest p…
114. Flatten Binary Tree to Linked List
Given a binary tree, flatten it to a linked list in-place. For example, given the following tree: 1 / \ 2 5 / …
LeetCode | Merge Two Sorted Lists(合并两个链表)
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together th…
LeetCode-459. Repeated Substring Pattern
Description Given a non-empty string check if it can be constructed by taking a substring of it and appending …
Leetcode PHP题解--D5 804. Unique Morse Code Words
804. Unique Morse Code Words 题目链接 804. Unique Morse Code Words 题目分析 这个题目要求算出把给定数组中的字符串转换成摩尔斯码后,有多少个不同的摩尔斯码。 思路…
Leetcode - No.17 Letter Combination of a Phone Number
Description Given a string containing digits from 2-9 inclusive, return all possible letter combinations that …
LeetCode算法题-Number of 1 Bits(Java实现)
这是悦乐书的第186次更新,第188篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第45题(顺位题号是191)。编写一个带无符号整数的函数,并返回它所具有的“1”位数。例如: 输入:11 输…
[LeetCode] Reverse Integer 翻转整数
Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 click to sh…
LeetCode | Remove Nth Node From End of List
题目: Given a linked list, remove the nth node from the end of list and return its head. For example, …
力扣(LeetCode)56
题目地址:https://leetcode-cn.com/probl…题目描述:给出一个区间的集合,请合并所有重叠的区间。 示例 1: 输入: [[1,3],[2,6],[8,10],[15,18]]输出: …