倪春恩的博客
12
06
offer-09 offer-09
/** 用两个栈实现一个队列。队列的声明如下,请实现它的两个函数 appendTail 和 deleteHead ,分别完成在队列尾部插入整数和在队列头部删除整数的功能 。(若队列中没有元素,deleteHead 操作返回 -1 )
2022-12-06
05
offer-07 offer-07
/** 输入某二叉树的前序遍历和中序遍历的结果,请构建该二叉树并返回其根节点。 假设输入的前序遍历和中序遍历的结果中都不含重复的数字。 示例 1: Input: preorder = [3,9,20,15,7], inord
2022-12-05
02
offer-06 offer-06
/** 输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。 示例 1: 输入:head = [1,3,2] 输出:[2,3,1] 限制: 0 <= 链表长度 <= 10000
2022-12-02
01
offer-05 offer-05
/** 请实现一个函数,把字符串 s 中的每个空格替换成"%20"。 示例 1: 输入:s = "We are happy." 输出:"We%20are%20happy." 限制: 0 <= s 的
2022-12-01
11
29
offer-04 offer-04
/** 在一个 n * m 的二维数组中,每一行都按照从左到右 非递减 的顺序排序,每一列都按照从上到下 非递减 的顺序排序。请完成一个高效的函数,输入这样的一个二维数 组和一个整数,判断数组中是否含有该整数。 示例: 现
2022-11-29
24
offer-03 offer-03
/** 找出数组中重复的数字。 在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。请找出 数组中任意一个重复的数字。 示例
2022-11-24
21
lc-204 lc-204
/** Given an integer n, return the number of prime numbers that are strictly less than n. Example 1: Input: n
2022-11-21
18
lc-202 lc-202
/** Write an algorithm to determine if a number n is happy. A happy number is a number defined by the following proce
2022-11-18
17
lc-217 lc-217
/** Given an integer array nums, return true if any value appears at least twice in the array, and return false if ever
2022-11-17
15
lc-149 lc-149
/** * Given an array of points where points[i] = [xi, yi] represents a point on the X- * Y plane, return the maximum n
2022-11-15
14
lc-140 lc-140
/** Given a string s and a dictionary of strings wordDict, add spaces in s to construct a sentence where each word is a
2022-11-14
10
lc-739 lc-739
/** Given an array of integers temperatures represents the daily temperatures, return an array answer such that answer[
2022-11-10
34 / 41