65.Unique Paths II 题目: https://leetcode.com/problems/unique-paths-ii/ tag : DP 难度 : Medium BASE CASE( i = 0 , …
分类:LeetCode
Leetcode之167-两数之和II(Two Sum II - Input array is sorted)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 给定一个已按照升序排列 的有序数组,找到两个数使得它们相加之和等于目标数。函数应该返回这两个下标值 index1 和 in…
[剑指offer] 孩子们的游戏(圆圈中最后剩下的数)
本文首发于我的个人博客:尾尾部落 题目描述 每年六一儿童节,牛客都会准备一些小礼物去看望孤儿院的小朋友,今年亦是如此。HF作为牛客的资深元老,自然也准备了一些小游戏。其中,有个游戏是这样的:首先,让小朋友们围成一个大圈。…
Leetcode 416.分割等和子集 解题报告
题目:Partition Equal Subset Sum 英文版链接:https://leetcode.com/problems/partition-equal-subset-sum/description/ 中文版链…
LeetCode算法题-Convert Sorted Array to Binary Search Tree(Java实现)
这是悦乐书的第166次更新,第168篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第25题(顺位题号是108)。给定一个数组,其中元素按升序排序,将其转换为高度平衡的二叉搜索树。例如: 给定…
[LeetCode] Binary Tree Paths 二叉树路径,Path Sum II
Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree:  …
[LeetCode] Find the Difference 寻找不同
Given two strings s and t which consist of only lowercase letters. String t&nb…
[LeetCode] Design Compressed String Iterator 设计压缩字符串的迭代器
Design and implement a data structure for a compressed string iterator. It should support the following…
[LeetCode] Maximum Width of Binary Tree 二叉树的最大宽度
Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree i…
Reverse Nodes in k-Group解题报告
Description: Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.…
H5中几种排序查找算法
哈喽,,大家,学习过程中个人觉得排序算法挺重要的,虽然目前没发现在哪里用到过,但是记着总是有好处的。。今天给大家说一下学习中写的几种排序查找算法,希望对大家有用 1、简单排序算法 初始序列:{49 27 65 97 76…
10. Regular Expression Matching
Hard fb tag https://www.youtube.com/watch?v=DqhPJ8MzDKM 此题简称为”p中找s”, 用dp做。 这道题一开始我naive地觉得如果p.leng…