您需要在二叉树的每一行中找到最大的值。 示例: 输入: 1 / \ 3 2 / \ \ 5 3 9 输出: [1, 3, 9] 解法一:宽度优先搜索 List<Integer> res = new ArrayList<>(); public List<Integer> largestValues(T ...
分类:
其他好文 时间:
2021-06-18 19:10:47
阅读次数:
0
| # Maredown学习 | | | | ## 标题 | | | | ### 三级标题 | | | | | | | | ## 字体 | | | | ## 引用 | | | | > 狂神 | | | | ## 分割线 | | | | | | | | *** | | | | | | | | ## 图 ...
分类:
其他好文 时间:
2021-06-17 17:14:28
阅读次数:
0
==时区修改== 查看当前时区:date 查看时区列表:timedatectl list-timezones 修改时区:timedatectl set-timezone Asia/Shanghai ==配置文件== centos8已经没有ntp时间同步服务了,使用的是chrony。 配置文件:vim ...
分类:
其他好文 时间:
2021-06-17 17:09:13
阅读次数:
0
1、批量插入 ServiceImpl层 List<Person> addPeople = new ArrayList<>(); //addPeople存放多个Person对象 personMapper.insetPeopleReturnIds(addPeople); Dao层接口(这里的注解para ...
分类:
数据库 时间:
2021-06-17 17:02:57
阅读次数:
0
1:开机同步 开机时自动同步可编辑 /etc/ntp/step-tickers 文件 1 vim /etc/ntp/step-tickers 2 3 # List of NTP servers used by the ntpdate service. 4 5 ntp.aliyun.com 6 tim ...
分类:
其他好文 时间:
2021-06-17 16:54:51
阅读次数:
0
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * struct ListNode *next; 6 * }; 7 */ 8 9 10 struct ListNode* middleN ...
分类:
其他好文 时间:
2021-06-16 18:35:48
阅读次数:
0
public class WeightProcessor { private final Map<Integer, List<String>> map = new HashMap<>(); //保存权重值和地址 private final Integer[] weight; //保存权重值,用于负载 ...
分类:
其他好文 时间:
2021-06-16 18:35:22
阅读次数:
0
操作列表 遍历列表 fruits = ['apple','banana','pear'] for fruit in fruits: print(fruit) #缩进表示在循环体内 print('done!') #不缩进是循环体外,避免缩进错误 使用range()创建数字列表 numbers = li ...
分类:
编程语言 时间:
2021-06-16 18:34:11
阅读次数:
0
快速搭建一个node服务,可以用于检查自己的单页应用是否有问题 app.js var exppress = require("express"); const fs = require("fs"); var app = exppress(); app.use(exppress.static("dis ...
分类:
其他好文 时间:
2021-06-16 18:10:25
阅读次数:
0
删除、卸载 sudo rm /etc/apt/sources.list.d/cuda* sudo apt-get --purge remove "*cublas*" "cuda*" "nsight*" sudo apt-get --purge remove "*nvidia*" sudo apt-g ...
分类:
其他好文 时间:
2021-06-16 17:58:13
阅读次数:
0