方法一:递归 遍历即从跟开始,递归的先访问左节点再访问右节点。中序遍历在访问完左节点后访问该节点的值。 1 /** 2 * Definition for a binary tree node. 3 * public class TreeNode { 4 * int val; 5 * TreeNode ...
分类:
其他好文 时间:
2021-07-02 15:49:51
阅读次数:
0
//把创建的对象都放到applicationContext容器中,要用时,在通过id一个一个取出来 壹、第一个spring项目 主配置文件 <beans> <bean id="a" class="com.dh.service.impl.SomeServiceImpl"/></beans> //在sp ...
分类:
编程语言 时间:
2021-07-02 15:49:28
阅读次数:
0
import pymysql,xlwt def export_excel(table_name): host,user,passwd,db='192.168.1.152','root','myjcyf','us_sys' coon=pymysql.connect(host=host,user=use ...
分类:
其他好文 时间:
2021-07-01 17:27:29
阅读次数:
0
public class QuickSort<T extends Comparable<T>> extends Sort<T> { @Override protected void sort() { sort(0, array.length); } /** * 对 [begin, end) 范围的元 ...
分类:
编程语言 时间:
2021-07-01 17:03:00
阅读次数:
0
public class MergeSort<T extends Comparable<T>> extends Sort<T> { private T[] leftArray; @Override protected void sort() { leftArray = (T[]) new Compa ...
分类:
编程语言 时间:
2021-07-01 16:59:30
阅读次数:
0
chapter 01 计算机系统概述 空间局部性(spatial locality)和时间局部性(temporal locality)的区别 时间局部性(temporal locality) 最近被引用的存储单元在未来会被多次引用(通常在循环中)。 空间局部性(spatial locality) 如 ...
分类:
其他好文 时间:
2021-07-01 16:54:19
阅读次数:
0
循环语句(重复做某件事) 1.for 循环代码块一定的次数 循环语句语法 for(初始值; 范围; 循环方式){ 执行代码块也叫循环体 } 代码块:多行代码执行的地方。 2.while 当指定条件为true时,循环指定的代码块 var a=初始值; while(范围){ 循环体; 循环方式; } w ...
分类:
编程语言 时间:
2021-07-01 16:37:19
阅读次数:
0
#region 毫秒延时 界面不会卡死 public static void Delay(int mm) { DateTime current = DateTime.Now; while (current.AddMilliseconds(mm) > DateTime.Now) { Applicati ...
分类:
移动开发 时间:
2021-07-01 16:29:40
阅读次数:
0
前言 需求:有这样一个数组[10, 20, 110, 200, 60, 30, 40] 1.筛选出数组中小于100的元素 2.将筛选出的每个元素的值x2 3.完成第2步之后,将数组中的所有元素加起来 普通方法 如果我们还没接触过filter、map、reduce,那么就是用for循环 <script ...
分类:
编程语言 时间:
2021-07-01 16:21:52
阅读次数:
0
#!/usr/bin/env bash __Author__="liy" # 发送钉钉告警 function DingDing(){ curl 'https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxx ...
分类:
其他好文 时间:
2021-06-30 18:14:38
阅读次数:
0