码迷,mamicode.com
首页 >  
搜索关键字:value    ( 37865个结果
每日一题力扣530 二叉搜索树的最小绝对查
给你一棵所有节点为非负值的二叉搜索树,请你计算树中任意两节点的差的绝对值的最小值。 class Solution: def getMinimumDifference(self, root: TreeNode) -> int: #初始化,最小值赋值为无穷大,last_value记录上一个节点的值 mi ...
分类:其他好文   时间:2021-04-15 12:22:03    阅读次数:0
python异常处理
sys.exc_info() 获取异常 import sys try: raise ValueError('this is a exp') except Exception as ex: ex_type, ex_val, ex_stack = sys.exc_info() print(ex_type ...
分类:编程语言   时间:2021-04-14 12:39:26    阅读次数:0
vue数据劫持
var Book = {} var name = ''; Object.defineProperty(Book, 'name', { set: function (value) { name = value; console.log('你取了一个书名叫做' + value); }, get: fun ...
分类:其他好文   时间:2021-04-14 11:55:37    阅读次数:0
690. Employee Importance
You are given a data structure of employee information, which includes the employee's unique id, their importance value and their direct subordinates' ...
分类:其他好文   时间:2021-04-13 12:31:50    阅读次数:0
Leetcode 74. Search a 2D Matrix
Description: Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each row ...
分类:其他好文   时间:2021-04-12 12:32:28    阅读次数:0
向mysql创建一个新用户失败,报“ERROR 1364 (HY000): Field 'ssl_cipher' doesn't have a default value”
使用mysql-8.0.23版的,创建用户屡屡失败,最终靠万能的度娘解决: 已知版本信息: C:\Users\Administrator\Desktop\mysql-8.0.23-winx64\mysql-8.0.23-winx64\bin>mysql -Vmysql Ver 8.0.23 for ...
分类:数据库   时间:2021-04-12 12:20:25    阅读次数:0
冒泡排序-python
source program: list=[]while True: print("how many number input:") try: num=int(input()) for i in range(num): a=int(input("input"+str((i+1))+"integer: ...
分类:编程语言   时间:2021-04-12 11:41:22    阅读次数:0
application.yaml配置文件
spring boot还支持yaml格式的配置文件。这种格式文件是JSON超集文件格式,其以数据为中心,扩展名可是是yml和yaml。 yaml格式文件以key/value的格式配置属性,使用缩进控制层级关系。 具体使用如下: 1、value为普通数据类型,根目录下建/config/applicat ...
分类:移动开发   时间:2021-04-10 13:31:59    阅读次数:0
LAMMPS中的系综(NPT/NVT)命令
语法: fix ID group-ID style_name keyword value ... ID 是fix名,group-ID是fix所作用的群组名。这两个是所有fix命令都需要的。 style_name可以选择NVT、NPT或者NPH 关键词keyword和对应的数值value可以添加 ke ...
分类:其他好文   时间:2021-04-10 13:31:43    阅读次数:0
html下拉菜单
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> </head> <body> <select id="province"> <option value ="">北京</option> </select> </bo ...
分类:Web程序   时间:2021-04-09 13:32:22    阅读次数:0
37865条   上一页 1 ... 26 27 28 29 30 ... 3787 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!