700. Search in a Binary Search Tree 题目链接 700. Search in a Binary Search Tree 题目分析 从给定的二叉树中,查找指定值及其子节点。 思路 这个好像…
分类:LeetCode
[剑指offer] 字符流中第一个不重复的字符
本文首发于我的个人博客:尾尾部落 题目描述 请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符”go”时,第一个只出现一次的字符是”g”…
Two Sum - Input array is sorted解题报告
Description: Given an array of integers that is already sorted in ascending order, find two numbers such that …
387. 字符串中的第一个唯一字符
一、题目原型: 给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。 注意事项:您可以假定该字符串只包含小写字母。 二、示例剖析: s = "leetcode" 返回 0. s = "l…
LeetCode 7.Reverse Integer
题意:给你一个整数,输出它的反转形式,保证符号不变,前端不包含空余的0,特别注意当数字反转后如果溢出32位整形,应该输出0。 解题思路:定义一个ans为0,对输入的数逐位取出,将ans乘以10之后加上该数,模拟数学进位。…
74. Search a 2D Matrix
74. Search a 2D Matrix 题目 Write an efficient algorithm that searches for a value in an m x n matrix. This matr…
67. Add Binary
67. Add Binary 题目 Given two binary strings, return their sum (also a binary string). For example, a = "11" b =…
[LeetCode] Find Median from Data Stream 找出数据流的中位数
Median is the middle value in an ordered integer list. If the size of the list is even, there is no mid…
[LeetCode] Valid Palindrome II 验证回文字符串之二
Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palin…
LeetCode 003 Longest Substring Without Repeating Characters
题目描述 Given a string, find the length of the longest substring without repeating characters. For example, the l…
力扣(LeetCode)146
题目地址:https://leetcode-cn.com/probl…题目描述:运用你所掌握的数据结构,设计和实现一个 LRU (最近最少使用) 缓存机制。它应该支持以下操作: 获取数据 get 和 写入数据…
LeetCode 59. Spiral Matrix II
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. For example,Gi…