884. Uncommon Words from Two Sentences 题目链接 884. Uncommon Words from Two Sentences 题目分析 返回给定的两个句子中唯一不同的单词。 思路 …
分类:LeetCode
LeetCode算法题-Add Strings(Java实现)
这是悦乐书的第223次更新,第236篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第90题(顺位题号是415)。给定两个非负整数num1和num2表示为字符串,返回num1和num2的总和。…
295. Find Median from Data Stream
考到了,完全没反应过来。这里是用两个heap来保存stream里的数;max heap保存小的那一半,min heap保存大的那一半数。这样的话,当两个heap里的数个数相同的时候,(maxPQ.peek + minPQ…
[LeetCode] Minimum Depth of Binary Tree 二叉树的最小深度
Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortes…
[LeetCode] Binary Tree Postorder Traversal 二叉树的后序遍历
Given a binary tree, return the postorder traversal of its nodes’ values. For example: Given bina…
[LeetCode] Best Time to Buy and Sell Stock IV 买卖股票的最佳时间之四
Say you have an array for which the ith element is the price of a given stock on day i. …
LeetCode总结
最近完成了www.leetcode.com的online judge中151道算法题目。除各个题目有特殊巧妙的解法以外,大部分题目都是经典的算法或者数据结构,因此做了如下小结,具体的解题思路可以搜索我的博客:LeetCo…
[Leetcode] Search for a Range 寻找区间
Search for a Range Given a sorted array of integers, find the starting and ending position of a given target v…
【leetcode】21. Merge Two Sorted Lists 两个有序链表的归并有序
1. 题目 Merge two sorted linked lists and return it as a new list. The new list should be made by splicing toget…
leetcode-cli: 体验不一样的刷题风 (4) 插件篇
leetcode-cli的功能在不断完善,同时也带来了一些实现上的问题: 新功能的不断加入提高了代码逻辑的复杂度,容易出bug。 不同功能的逻辑混在一起,难以理解和维护。 部分功能不是所有人都需要,也不是对所有编程语言都…
254. Factor Combinations
Problem Numbers can be regarded as product of its factors. For example, 8 = 2 x 2 x 2; = 2 x 4. Write a functi…
两数相加
两数相加 给定两个非空链表来表示两个非负整数。位数按照逆序方式存储,它们的每个节点只存储单个数字。将两数相加返回一个新的链表。 你可以假设除了数字 0 之外,这两个数字都不会以零开头。 输入:(2 -> 4 -&g…