1、背景说明:?公司有隔绝Internet环境中有一套“SymantecEnpointProtectionManager”(简称SEPM)软件,由于隔绝了Internet,所以杀毒软件定义包文件等,需要每日手动下载后,拷贝到SEPM所在的服务器上。?借助于Python写一个程序,每天定时的去下载这些定义包,等到上班后直接进行拷贝。2、环境准备:?本程序需要借助于Pyt
分类:
编程语言 时间:
2020-04-29 10:54:14
阅读次数:
96
SQL语句分类 1. DDL(Data Definition Language):数据定义语言;用来定义数据库对象:库,表,列等 2. DML(Data Manipulation Language):数据操作语言;用来定义数据库记录(数据) 3. DQL(Data Query Language):数 ...
分类:
数据库 时间:
2020-04-28 00:24:55
阅读次数:
129
337. 打家劫舍 III https://leetcode-cn.com/problems/house-robber-iii/ /** * Definition for a binary tree node. * type TreeNode struct { * Val int * Left *T ...
分类:
其他好文 时间:
2020-04-26 11:12:02
阅读次数:
55
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: ...
分类:
其他好文 时间:
2020-04-25 17:10:35
阅读次数:
72
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None #先是比较树根左右边的是否相等。 ...
分类:
其他好文 时间:
2020-04-25 01:15:08
阅读次数:
58
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: ...
分类:
其他好文 时间:
2020-04-24 11:42:55
阅读次数:
55
使用中序遍历,返回第k个数来处理 # Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None ...
分类:
其他好文 时间:
2020-04-24 01:02:36
阅读次数:
63
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: ...
分类:
其他好文 时间:
2020-04-24 00:50:47
阅读次数:
60
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: ...
分类:
其他好文 时间:
2020-04-23 12:09:43
阅读次数:
60
题目描述 Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The ...
分类:
其他好文 时间:
2020-04-23 00:51:39
阅读次数:
73