package com.example.demo; import java.util.ArrayList; import java.util.List; /** * 94. 二叉树的中序遍历 * 给定一个二叉树,返回它的中序 遍历。 * <p> * 示例: * <p> * 输入: [1,null,2 ...
分类:
其他好文 时间:
2020-06-15 12:31:43
阅读次数:
53
最近,在项目开发过程中使用了RedisTemplate,进行单元测试时提示“Field redisTemplate in com.example.demo1.dao.RedisDao required a bean of type ‘org.springframework.data.redis.co ...
分类:
编程语言 时间:
2020-06-15 12:21:53
阅读次数:
41
anltr应用实例: http://0x100.club/projects/antlr-example.html antlr入门: https://www.cnblogs.com/clonen/p/9083359.html ...
分类:
其他好文 时间:
2020-06-14 18:25:02
阅读次数:
43
1.默认配置 根据默认配置给出中文注释 # Example config file /etc/vsftpd.conf## The default compiled in settings are fairly paranoid. This sample file# loosens things up ...
分类:
其他好文 时间:
2020-06-14 16:48:06
阅读次数:
68
问题: 给定一组学生身高,要对其进行身高排序,从低到高。 求最少要移动几个学生的位置。 Example 1: Input: heights = [1,1,4,2,1,3] Output: 3 Explanation: Current array : [1,1,4,2,1,3] Target arra ...
分类:
其他好文 时间:
2020-06-14 14:54:09
阅读次数:
47
1. 获取Springboot容器Bean对象调用业务方法 package com.example.springboot; import com.example.springboot.service.StudentService; import org.springframework.boot.Sp ...
分类:
编程语言 时间:
2020-06-14 11:20:43
阅读次数:
74
Trie (Prefix Tree)前缀树 使用insert,search和startsWith方法实现Trie。 Example: Trie trie = new Trie(); trie.insert("apple"); trie.search("apple"); // returns true ...
分类:
其他好文 时间:
2020-06-13 23:35:06
阅读次数:
76
1. 元注解@Inherited继承 package com.example.demo; import java.lang.annotation.*; import java.util.Arrays; public class Test { public static void main(Strin ...
分类:
编程语言 时间:
2020-06-13 21:12:40
阅读次数:
62
linux安装git服务YUM安装Git软件yum -y install gitgit --version通常配置git,只需要配置你是谁,你的邮箱是什么。这样就知道是谁提交了什么内容。git config --global user.email “you@example.com”git confi ...
分类:
其他好文 时间:
2020-06-13 19:30:42
阅读次数:
64
mysql支持很多表类型的表(即存储引擎),如myisam、innodb、memory、archive、example等。每种存储引擎都有自己的优点和缺点,充分的理解每种存储引擎,有助于合理的使用它们。有人认为在同一个数据库中使用多种存储引擎很影响性能,其实这是一种十分错误的想法。实际上,除非是非常 ...
分类:
数据库 时间:
2020-06-13 17:18:46
阅读次数:
70