码迷,mamicode.com
首页 >  
搜索关键字:循环 if for while case    ( 74454个结果
LeetCode.94二叉树的中序遍历
方法一:递归 遍历即从跟开始,递归的先访问左节点再访问右节点。中序遍历在访问完左节点后访问该节点的值。 1 /** 2 * Definition for a binary tree node. 3 * public class TreeNode { 4 * int val; 5 * TreeNode ...
分类:其他好文   时间:2021-07-02 15:49:51    阅读次数:0
spring学习
//把创建的对象都放到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
操作系统(Operating Systems: Internals and Design Principles)
chapter 01 计算机系统概述 空间局部性(spatial locality)和时间局部性(temporal locality)的区别 时间局部性(temporal locality) 最近被引用的存储单元在未来会被多次引用(通常在循环中)。 空间局部性(spatial locality) 如 ...
分类:其他好文   时间:2021-07-01 16:54:19    阅读次数:0
JavaScript循环语句
循环语句(重复做某件事) 1.for 循环代码块一定的次数 循环语句语法 for(初始值; 范围; 循环方式){ 执行代码块也叫循环体 } 代码块:多行代码执行的地方。 2.while 当指定条件为true时,循环指定的代码块 var a=初始值; while(范围){ 循环体; 循环方式; } w ...
分类:编程语言   时间:2021-07-01 16:37:19    阅读次数:0
winform 使用Thread.Sleep界面卡死 使用 Application.DoEvents 方法防止UI假死
#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
JavaScript(1)高阶函数filter、map、reduce
前言 需求:有这样一个数组[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
74454条   上一页 1 2 3 4 5 6 ... 7446 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!