This is an in-detail account of the Raspberry Pi boot process collected from various sources, mainly from the official forums. First, you need to know ...
分类:
Web程序 时间:
2020-08-12 15:43:48
阅读次数:
87
本人git https://github.com/bigeyes-debug/Algorithm 一丶双向链表 单向链表只能通过node单向next从头遍历链表,只能直接获得后继,无法获得前驱 双向链表增加prev属性,prev属性指向前驱 双向链表可以从first 和last两个方向开始查找 二丶 ...
分类:
编程语言 时间:
2020-08-12 15:43:31
阅读次数:
65
jQuery UI 中的 datepicker( )方法 学习要点: 调用 datepicker( ) 方法 修改 datepicker()样式 datepicker( ) 方法的属性 datepicker( ) 方法的事件 一、调用 datepicker()方法 $('#date').datepi ...
分类:
Web程序 时间:
2020-08-09 14:23:28
阅读次数:
82
编写脚本实现在指定文件路径下查找文件夹或文件名。 脚本如下: #!/bin/sh # lazy find # GNU All-Permissive License # Copying and distribution of this file, with or without modificatio ...
分类:
系统相关 时间:
2020-08-09 09:19:05
阅读次数:
100
99. 恢复二叉搜索树 题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/recover-binary-search-tree 题目 二叉搜索树中的两个节点被错误地交换。 请在不改变其结构的情况下,恢复这棵树。 示例 1: 输入: [1,3,null ...
分类:
编程语言 时间:
2020-08-08 21:20:59
阅读次数:
83
对给定的内容进行小驼峰式转换 var reg=/-(\w)/g; var str="the-first-name"; str=str.replace(reg,function($,$1){ return $1.toUpperCase(); }) console.log(str) // theFirs ...
分类:
编程语言 时间:
2020-08-08 10:34:32
阅读次数:
76
本篇LIst 什么是接口? 定义一个接口 可选属性接口 只读属性接口 可添加属性接口 函数接口 什么是接口 定义接口 // 1.定义一个接口 interface Person { pName: string; pAge: number; pSex: string; } let person: Per ...
分类:
其他好文 时间:
2020-08-08 09:25:18
阅读次数:
68
这道题判断如何选择区间进行01变换让数列中的1个数最多,可以用暴力做法来做,每选择一个区间求出一个值,最后找到一个最大值。 Iahub got bored, so he invented a game to be played on paper. He writes n integers a 1,? ...
分类:
其他好文 时间:
2020-08-08 09:24:07
阅读次数:
84
首先从ES的支持的字段说起,ES文档中字段有多种类型 官方文档。 这几个比较常用: text,keyword,integer,float,boolean,object,geo_point(地理坐标),geo_shape(描述地理区域),date. 注:不要以为date只能表示 2015-01-01 ...
分类:
其他好文 时间:
2020-08-07 18:08:11
阅读次数:
84
procedure TfrmUnionShipMent.dgMainTitleBtnClick(Sender: TObject; ACol: Integer; Column: TColumnEh);VAR INDEX : INTEGER; SortString : String; FirstFlag ...
分类:
数据库 时间:
2020-08-07 12:35:31
阅读次数:
90