写在前面的话 相关背景及资源: "曹工说Spring Boot源码(1) Bean Definition到底是什么,附spring思维导图分享" "曹工说Spring Boot源码(2) Bean Definition到底是什么,咱们对着接口,逐个方法讲解" "曹工说Spring Boot源码(3) ...
分类:
编程语言 时间:
2020-02-09 20:21:08
阅读次数:
75
DDL DDL的概述 DDL(Data Definition Language 数据定义语言)用于操作对象和对象的属性,这种对象包括数据库本身,以及数据库对象,像:表、视图等等,DDL对这些对象和属性的管理和定义具体表现在Create、Drop和Alter上。特别注意:DDL操作的“对象”的概念,” ...
分类:
数据库 时间:
2020-02-09 18:33:08
阅读次数:
66
内生变量用于计量经济学,有时用于线性回归。它们与因变量相似(但不完全相同)。内生变量的值由系统中的其他变量决定(这些“其他”变量称为外生变量)。根据密歇根大学迪尔伯恩分校的丹尼尔利特尔(Daniel Little),内生变量的定义如下: 如果变量xj的值是由一个或多个自变量X(不包括其本身)决定或影 ...
分类:
其他好文 时间:
2020-02-08 11:49:10
阅读次数:
92
c++,如果本节点为空,返回0,否则返回 这棵树孩子中(找到每个节点的最大值,返回最大值+1即可,1是本节点的深度) /* // Definition for a Node. class Node { public: int val; vector<Node*> children; Node() { ...
分类:
其他好文 时间:
2020-02-07 20:43:21
阅读次数:
67
写在前面的话 相关背景及资源: "曹工说Spring Boot源码(1) Bean Definition到底是什么,附spring思维导图分享" "曹工说Spring Boot源码(2) Bean Definition到底是什么,咱们对着接口,逐个方法讲解" "曹工说Spring Boot源码(3) ...
分类:
编程语言 时间:
2020-02-07 10:48:39
阅读次数:
73
找BST里最近的值,用两次logn的搜索。注意递归过程中记录遇到过的closest。 看了题解可以不用递归,而且一次搜索中完成。 # Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # sel ...
分类:
其他好文 时间:
2020-02-06 01:06:41
阅读次数:
59
// colors @colors: darkslateblue mediumorchid seagreen steelblue; // loop definition .backgrounds(@list, @i: 1) when (@i <= length(@list)) { // extrac ...
分类:
其他好文 时间:
2020-01-31 20:36:45
阅读次数:
68
要注意边和节点数是不一样的 # Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None cl ...
分类:
其他好文 时间:
2020-01-31 10:21:14
阅读次数:
76
Given a list of points that form a polygon when joined sequentially, find if this polygon is convex (Convex polygon definition). ...
分类:
编程语言 时间:
2020-01-31 00:52:35
阅读次数:
83
Marshal.PtrToStringAnsi中文乱码 出错代码: string dec = Marshal.PtrToStringAnsi(audioOutput.psz_description);//输出 鎵0鍣?(Realtek High Definition Audio) 原因: 查看内存 ...
分类:
其他好文 时间:
2020-01-28 17:28:49
阅读次数:
66