上一篇文章选出了 docsify 作为我的 Wiki 系统,这篇就来说下 docsify 的部署和配置。 官方推荐部署 docsify 快速开始文档: "https://docsify.js.org/ /quickstart" 快速开始 安装 工具: 初始化项目: 预览网站: 部署到服务器 docs ...
分类:
其他好文 时间:
2020-05-17 13:25:39
阅读次数:
154
循环双向链结表 插入元素 int insert(DList *L, ElemType e) { Link current = L->head; Link previous = L->tail; Link newNode; int size = getSize(*L); int position=0; ...
分类:
其他好文 时间:
2020-05-16 19:08:45
阅读次数:
46
单链线性表的查找元素 int search(List L, ElemType e) { Link link = L; int position=0;。 while (link!=NULL) { if (link->elem==e) return position; // 搜寻成功,返回元素 e 的位 ...
分类:
其他好文 时间:
2020-05-16 18:50:51
阅读次数:
62
一、循环双向链结表 插入元素 int insert(DList *L, ElemType e) { Link current = L->head; Link previous = L->tail; Link newNode; int size = getSize(*L); int position= ...
分类:
其他好文 时间:
2020-05-15 00:38:46
阅读次数:
84
7.6 Recommended Template Parameter Declarations 7.6 推荐的模板参数声明方法 As we learned in the previous sections, we have very different ways to declare paramet ...
分类:
其他好文 时间:
2020-05-03 21:56:04
阅读次数:
80
一、版本选择 建议安装5.0版本,因为好注册,这个你懂得。 下载地址: https://confluence.jetbrains.com/display/PYH/Previous+PyCharm+Releases 下载速度较慢,经常中断,所以建议使用迅雷等断点式下载工具。 二、配置 2.1 Tab键 ...
分类:
其他好文 时间:
2020-04-29 13:09:13
阅读次数:
119
轮播效果一 wxml: <view class='pageBox pageOne'> <view class='list'> <swiper indicator-dots="{{true}}" autoplay="{{false}}" previous-margin="{{'140rpx'}}" n ...
分类:
微信 时间:
2020-04-27 17:11:22
阅读次数:
491
What 起源 Kettle是一个Java编写的ETL工具,主作者是Matt Casters,2003年就开始了这个项目,最新稳定版为7.1。2005年12月,Kettle从2.1版本开始进入了开源领域,一直到4.1版本遵守LGPL协议,从4.2版本开始遵守Apache Licence 2.0协议。 ...
分类:
其他好文 时间:
2020-04-24 11:41:41
阅读次数:
87
COMS3200/7201 Assignment 1Due: 20th April 2020, 20:00100 marks total (20% weight for the final grade (100%))Part A (20 marks total)Answer each of the ...
分类:
其他好文 时间:
2020-04-22 19:36:33
阅读次数:
54
本文介绍下Java中线程池的基本用法,基于此说明如何去确定线程池的大小。 线程池的创建方法 newFixedThreadPool 创建固定线程数的线程池,见下创建代码 /** * Creates a thread pool that reuses a fixed number of threads ...
分类:
编程语言 时间:
2020-04-21 13:34:00
阅读次数:
82