这是悦乐书的第298次更新,第317篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第166题(顺位题号是705)。不使用任何内建的hash表库设计一个hash集合,应包含以下功能: add(…
分类:LeetCode
LeetCode算法题-Student Attendance Record I(Java实现)
这是悦乐书的第258次更新,第271篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第125题(顺位题号是551)。您将获得一个表示学生出勤记录的字符串。 该记录仅包含以下三个字符: R…
[LeetCode] Interleaving String 交织相错的字符串,Word Break 拆分词句
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. For example, Given: s1 = …
[LeetCode] Kth Smallest Element in a BST 二叉搜索树中的第K小的元素,Validate Binary Search Tree 验证二叉搜索树,Recover Binary Search Tree 复原二叉搜索树,Binary Search Tree Iterator 二叉搜索树迭代器,Unique Binary Search Trees 独一无二的二叉搜索树,Unique Binary Search Trees II 独一无二的二叉搜索树之二,Convert Sorted Array to Binary Search Tree 将有序数组转为二叉搜索树,Convert Sorted List to Binary Search Tree 将有序链表转为二叉搜索树,Binary Tree Inorder Traversal 二叉树的中序遍历
Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. Note: …
[LeetCode] Implement Queue using Stacks 用栈来实现队列,Implement Stack using Queues 用队列来实现栈
Implement the following operations of a queue using stacks. push(x) — Push element x to the back …
[LeetCode] Employee Importance 员工重要度
You are given a data structure of employee information, which includes the employee’s unique id, …
LeetCode | Combinations(n选k全排列)
Given two integers n and k, return all possible combinations of k numbers out of 1 …
Leetcode之523-连续的子数组和(Continuous Subarray Sum)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 给定一个包含非负数的数组和一个目标整数k, 编写一个函数来判断该数组是否含有连续的子数组, 其大小至少为2, 总和为k的倍…
Leetcode - Bitwise AND of Numbers Range
My code: public class Solution { public int rangeBitwiseAnd(int m, int n) { int i = 1; while (m != n) { m >…
Leetcode 42. Trapping Rain Water
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much…
371. Sum of Two Integers
My Submissions Difficulty: Easy Contributors: Admin Calculate the sum of two integers a and b, but you are not…
LeetCode-Best Time to Buy and Sell Stock
发布自 Kindem的博客,欢迎大家转载,但是要注意注明出处 题目 给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。 如果你最多只允许完成一笔交易(即买入和卖出一支股票),设计一个算法来计算你所能获取的最…