Description:Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to t ...
分类:
其他好文 时间:
2021-03-18 14:37:13
阅读次数:
0
mysql命令行报错: 如下: mysql> use mysqlERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql' 解决方法: 打开my.ini(linux下时my.cnf)文件,在[mysqld ...
分类:
数据库 时间:
2021-03-18 14:24:12
阅读次数:
0
android动画效果大全!免费Android高级工程师学习资源,复习指南 ...
分类:
移动开发 时间:
2021-03-17 14:14:03
阅读次数:
0
1:修改/etc/docker/daemon.json文件 { "registry-mirrors": [ "https://kfwkfulq.mirror.aliyuncs.com", "https://2lqq34jg.mirror.aliyuncs.com", "https://pee6w65 ...
分类:
其他好文 时间:
2021-03-16 13:49:07
阅读次数:
0
#111. 二叉树的最小深度 https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/ 关键在于知道f(root)=min(f(left),f(right))+1这个表达式 class Solution { public: int ...
分类:
其他好文 时间:
2021-03-16 12:04:09
阅读次数:
0
BeanFactoryPostProcessor 自定义spring进行注入 import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.BeanFactoryPos ...
分类:
其他好文 时间:
2021-03-15 11:27:52
阅读次数:
0
vue代码: 1 <template> 2 <div> 3 <div class="main"> 4 <ul> 5 <li 6 v-for="(item, index) in list" 7 :key="index" 8 :class="{ new: item.new }" 9 @click="Op ...
分类:
其他好文 时间:
2021-03-15 11:03:20
阅读次数:
0
参考:https://blog.csdn.net/qq_33543634/article/details/80725899 从网上查阅资料得知从 Java 7 build 105 版本开始,Java 7 的编译器和运行环境支持新的 try-with-resources 语句,称为 ARM 块(Aut ...
分类:
编程语言 时间:
2021-03-15 10:48:51
阅读次数:
0
open_basedir将网站限定在指定的目录,做目录的隔离 先在php.ini中设置open_basedir: # vim /usr/local/php/etc/php.ini //搜索open_basedir,改成如下 open_basedir = /usr/local/apache2.4/do ...
分类:
Web程序 时间:
2021-03-10 13:11:22
阅读次数:
0
1.下载安装 docker pull mongo:4.2.8 2.运行一个容器 mkdir -p /storage/data/mongodb/db #创建文件夹 docker run -itd --name mongo --restart=always -p 27017:27017 -e MONGO ...
分类:
数据库 时间:
2021-03-10 13:07:53
阅读次数:
0