码迷,mamicode.com
首页 >  
搜索关键字:do ... while 循环    ( 74622个结果
循环导出所有行和列
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
reverse operation of git add
before commit, do: git rm --cached <filename> ATTENTION: do not use 'git rm <filename>', this will delete the file from disk if commited, first use: " ...
分类:其他好文   时间:2021-07-01 17:07:16    阅读次数: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
线性表(链式存储结构)
链式与顺序结构的最大区别在于,插入或删除操作需要移动大量元素。 链表类型:单链表,循环链表,双向链表。 单链表的组成:每个数据元素内包括两个域:数据域和指针域。 单链表的创建方式有两种:一种是头插法和尾插法。 #include <stdio.h> #include <stdlib.h> typede ...
分类:其他好文   时间:2021-06-30 18:07:18    阅读次数:0
74622条   上一页 1 2 3 4 5 6 ... 7463 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!