希尔排序是插入排序的升级版 思路其实也大同小异 先对数组进行分组,假设8个数字 定义一个步长,步长设为数组长的的一半,即 arr.length / 2 则最开始步长为 8 / 2 = 4 (下标)04、15、26、37 各位一组进行插入排序比较 第二次步长为 4 / 2 = 2 则0 2 4 6、1 ...
分类:
编程语言 时间:
2020-07-18 15:54:00
阅读次数:
57
今天在使用apache搭建yum的web服务时,配置完成后、访问http://ip 时,浏览器报错:500 Internal Server Error 然后查询error.log发现,有如下错误提示: [Sat Jul 18 11:28:23 2020] [crit] [client 12.23.7 ...
分类:
Web程序 时间:
2020-07-18 15:34:21
阅读次数:
88
【vue踩坑记录】3、“Error in render: "TypeError: Cannot read property '0' of undefined"”渲染错误问题 最后发布:2019-02-09 20:20:07首发:2019-02-09 20:20:07 原文链接:https://blo ...
分类:
其他好文 时间:
2020-07-18 13:47:51
阅读次数:
331
虽然我已经安装了GPU版的pytorch,但是只能使用CPU的。 安装的pytorch版本pytorch1.5.1-py36-cu102-cudn70 执行: >>> import torch >>> import torchvision >>> torch.cuda.is_available() ...
分类:
其他好文 时间:
2020-07-18 13:33:18
阅读次数:
406
只有csr没有crt,每次创建新的证书的时候都报错失效日期错误,只有请求证书信息没有生成证书信息
分类:
其他好文 时间:
2020-07-18 11:40:11
阅读次数:
104
一、问题描述 Django中执行create database charset=utf8;命令报错:ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your ...
分类:
数据库 时间:
2020-07-18 11:39:41
阅读次数:
133
server { listen 80; server_name www.jxc.com; root "D:/phpstudy_pro/WWW/jxc"; location / { index index.php index.html; error_page 400 /error/400.html; ...
分类:
Web程序 时间:
2020-07-18 11:37:07
阅读次数:
114
GPS平台、网站建设、软件开发、系统运维,找森大网络科技!https://cnsendnet.taobao.com来自森大科技官方博客http://www.cnsendblog.com/index.php/?p=997 打开cmd:mysql -u root -p 输入密码root 进入mysql依 ...
分类:
数据库 时间:
2020-07-18 00:54:24
阅读次数:
112
#include <chrono> #include <iostream> #include <ctime> using namespace std; #pragma warning(disable:4996) void unixTime2Str(__int64 n, char strTime[], ...
Vue触发隐藏input file的方法 1、使用input透明覆盖法 将input的z-index设置为1以上的数字并覆盖到需点击的内容上,将input的样式opacity设置为0(即为透明度为0),这样通过绑定在input上的change事件触发 推荐 <p class="uploadImg"> ...
分类:
其他好文 时间:
2020-07-17 22:28:15
阅读次数:
191