例子 1 border-radius:2em; 等价于: border-top-left-radius:2em; border-top-right-radius:2em; border-bottom-right-radius:2em; border-bottom-left-radius:2em; 例 ...
分类:
其他好文 时间:
2020-07-18 22:30:05
阅读次数:
94
中序。 刚拿到题目时,第一想法是递归,但是搞错了二叉搜索树成立的条件。 我以为的条件是:左侧树为二叉搜索树,右侧树为二叉搜索树,且root.right>root>root.left,然后递归。 但是显然这不对,满足以上条件后,root.right.left可能比root要小。 先说正确的递归解法:正 ...
分类:
其他好文 时间:
2020-07-18 22:03:27
阅读次数:
71
题解:层次遍历的基础上加个计数器,偶数层得到的结果反转一下 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeN ...
分类:
其他好文 时间:
2020-07-18 21:52:24
阅读次数:
59
Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specificat ...
分类:
其他好文 时间:
2020-07-18 21:49:07
阅读次数:
59
解题:利用队列先进先出来实现层次遍历 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) ...
分类:
其他好文 时间:
2020-07-18 19:52:44
阅读次数:
68
<head> <style> .adModal{ position:fixed; background: black; top: 0; right: 0; bottom: 0; left: 0; z-index: 998; opacity: 0.4; } .tdModal{ position:fix ...
分类:
其他好文 时间:
2020-07-18 19:50:38
阅读次数:
67
0.编写一个程序,统计当前目录下每个文件类型的文件数,程序实现如图: 代码实现: 1 import os 2 # 使用os.curdir表示当前目录更标准 3 all_files = os.listdir(os.curdir) 4 type_dict = dict() 5 6 for each_fi ...
分类:
编程语言 时间:
2020-07-18 19:45:56
阅读次数:
90
joinable detachable 等待线程完成的方式 调用线程(的线程)在等待被调用的线程结束时,为保证一定会执行join方法,需要捕获 定义被调用线程 到 正常调用join方法 之间的异常,在异常处理中要调用join方法,然后再throw异常 使用RAII方式,在析构函数中等待 向线程函数传 ...
分类:
编程语言 时间:
2020-07-18 16:06:06
阅读次数:
72
内边距:padding padding-top: padding-right: padding-bottom: padding-left: 简写方式: padding:上 右 下 左 ; padding:10px 10px;(上下,左右) 注意:padding会撑大盒子宽度 ...
分类:
其他好文 时间:
2020-07-18 16:00:39
阅读次数:
58
外边距:margin margin-top: margin-right: margin-bottom: margin-left: 简写方式: margin:30px;(上下左右都30px) margin:30px 50px;(上下,左右) margin:上 右 下 左; ...
分类:
其他好文 时间:
2020-07-18 15:57:14
阅读次数:
58