宣布自 Kindem的博客,迎接人人转载,然则要注重说明出处 问题 给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价钱。 假如你最多只允许完成一笔生意业务(即买入和卖出一支股票),设想一个算法来盘算你所能猎取…
分类:LeetCode
[LeetCode] Length of Last Word 求末尾单词的长度
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', …
[LeetCode] UTF-8 Validation 编码验证
A character in UTF8 can be from 1 to 4 bytes long, subjected to the following rules: For 1-byte charact…
leetcode690
题目地址:https://leetcode-cn.com/probl…题目描述:给定一个保存员工信息的数据结构,它包含了员工唯一的id,重要度 和 直系下属的id。 比如,员工1是员工2的领导,员工2是员工3…
4. 链表
链表题目是有套路的,如下4个方法: 链表逆序 (n个节点进行逆序,实际上循环进行n-1次) 2个指针 (拆分、拼接、合并、求中点) 链表成环 使用额外空间保存 143. Reorder List Given a sing…
LeetCode算法题-Missing Number(Java实现-四种解法)
这是悦乐书的第200次更新,第209篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第65题(顺位题号是268)。给定一个包含n个不同数字的数组,取自0,1,2,…,n,找到数组中…
LeetCode算法题-Path Sum(Java实现)
这是悦乐书的第169次更新,第171篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第28题(顺位题号是112)。给定二叉树和整数sum,确定树是否具有根到叶路径,使得沿路径的所有值相加等于给…
203. Remove Linked List Elements
easy Remove all elements from a linked list of integers that have value val. Example Given: 1 –> 2 …
366. Find Leaves of Binary Tree
Medium 这道题终于在第五次做的时候,明白了Binary Tree的Height和Depth的区别,Height是从下往上数,Leaf的height为0, Root的height最大;而Depth是从上往下数,roo…
Leetcode 186. Reverse Words in a String II
Given an input string, reverse the string word by word. A word is defined as a sequence of non-space character…
44. Wildcard Matching
44. Wildcard Matching 题目 Implement regular expression matching with support for '.' and '*'. '.' Matches any s…
152. Maximum Product Subarray
欢迎fork and star:Nowcoder-Repository-github 152. Maximum Product Subarray 题目 Find the contiguous subarray withi…