<div class="divide"></div> <div class="user-right"> 2020-01-06 11:12:40 wang</div> <div class="chat-right"> <span>wsw今天天气不错呦,一起去海边走走怎么样??</span> <div ...
分类:
Web程序 时间:
2020-04-16 19:19:43
阅读次数:
78
<Row className="row_gap workerFus"> <Col span={6} className="text_right"> {/* <div className="row_label">数据中心<span className = "colonyColor">*</span>< ...
分类:
其他好文 时间:
2020-04-15 10:57:51
阅读次数:
191
import turtle as t t.left(60) for i in range(3): t.fd(100) t.right(120) t.fd(50) t.right(60) for i in range(3): t.fd(50) t.right(120) t.done() ...
分类:
其他好文 时间:
2020-04-14 21:05:13
阅读次数:
69
题目: "leetcode 42题" 解法一:动态规划 int trap(vector& height) { int ans = 0; int size = height.size(); if(size) { vector max_left(size); vector max_right(size) ...
分类:
其他好文 时间:
2020-04-14 20:44:47
阅读次数:
111
单独定义echarts中每个图例的样式,自定义图例的点击方法 //用不同样式的图例用数组写对应图例的样式 legend:[{ top: "15%", right: "24%", textStyle: { color: "#3BAEFE", fontSize: 14, fontFamily: "微软雅 ...
分类:
其他好文 时间:
2020-04-14 18:24:20
阅读次数:
179
import win32gui import win32ui import win32con name = "test.txt - Notepad" hwnd = win32gui.FindWindow(None, name) left, top, right, bot = win32gui.Get ...
分类:
编程语言 时间:
2020-04-14 12:33:20
阅读次数:
112
UVA 12657 Boxes in a Line You have n boxes in a line on the table numbered 1 . . . n from left to right. Your task is to simulate 4kinds of commands:? ...
分类:
移动开发 时间:
2020-04-13 01:10:00
阅读次数:
105
首先,我们考虑$f(x)$在$\mathbb R$上都是定义的。根据定义,显然有$f(0)=0$;其次,对于$x\neq0$,不妨先设$x\gt0$,则有在$t\rightarrow\frac1t$的积分变换下为 $$ 0<f(x)=\int_0^x\left|\sin\frac1t\right|\ ...
分类:
其他好文 时间:
2020-04-12 23:05:40
阅读次数:
248
1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode(int x) : val(x), ...
分类:
其他好文 时间:
2020-04-12 18:30:30
阅读次数:
65
二叉树 根节点:树中上部的节点 左叶子节点 右叶子节点 子树 完整的子树 一个根节点,左右叶子节点组成 不完整的子树 根节点,左叶子节点 根节点,右叶子节点 根节点 特点:每一个节点都可以作为某一颗子树的根节点 构造二叉树 想法:创建列表,每次循环判断节点的left和right,如果不为空将该节点放 ...
分类:
其他好文 时间:
2020-04-12 14:24:51
阅读次数:
43