var json = @"{ 'DisplayName': '新一代算法模型', 'CustomerType': 1, 'Report': { 'TotalCustomerCount': 1000, 'TotalTradeCount': 50 }, 'CustomerIDHash': [1,2,3, ...
基础莫队入门 首先来看这样的一个经典问题:求区间内有多少个不同的数 首先一个朴素的暴力就是每次移动左右端点然后更新答案,但这样显然可以被卡到 $O(n ^ 2)$,那么有什么办法优化这个复杂度呢?这个时候莫队算法就横空出世了! 首先我们考虑把询问离线,我们想办法把上面的询问排序然后让暴力的复杂度变优 ...
分类:
其他好文 时间:
2020-07-02 13:43:57
阅读次数:
46
在k8s的master节点安装nginx-module-vts模块 解压软件包 unzip nginx-module-vts-master.zip mv nginx-module-vts-master /usr/local/ 安装nginx tar zxvf nginx-1.15.7.tar.gz ...
分类:
其他好文 时间:
2020-07-02 09:28:44
阅读次数:
207
Spring Boot has taken Spring framework to the next level. It has drastically reduced the configuration and setup time required for spring projects. Sp ...
分类:
数据库 时间:
2020-07-01 18:40:39
阅读次数:
64
一、总结 1、配置 php解释器。 二、phpStorm解释器与服务器配置(解决502 bad gateway与404 not found问题) phpstorm是一个非常强大的全栈开发工具,但是作为刚入手的我发现它并不是安装之后就可以正常使用的,还需要相关的配置,否则会出现网页打开错误。下面记录我 ...
分类:
Web程序 时间:
2020-07-01 17:23:45
阅读次数:
71
在学习 Spring 的时候,我们必须得有个整体性的概念。 这个概念就是: Spring 到底是什么? 官网给了如下的介绍: The Spring Framework provides a comprehensive programming and configuration model for m ...
分类:
编程语言 时间:
2020-07-01 16:15:49
阅读次数:
77
首先是css样式,比如这样的: 1 <style> 2 *{ 3 margin:0; 4 padding: 0; 5 list-style: none; 6 font-size: 12px; 7 } 8 .notice{ 9 width: 298px; 10 height: 98px; 11 mar ...
分类:
Web程序 时间:
2020-07-01 12:47:53
阅读次数:
44
1) 添加一张图片,但是不显示出来 2) 把图片嵌入到表格中 3) 在新窗口中打开链接 ...
分类:
Web程序 时间:
2020-07-01 11:09:40
阅读次数:
60
报错信息: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' registered in the application c ...
处理事务回滚 参考文献:《极客时间-Java业务开发常见错误100例》https://time.geekbang.org/column/article/213295 大多数Spring Boot项目只需要在方法上标记@Transactional注解,即可一键开启方法的事务性配置。 保证事务生效 务必 ...
分类:
其他好文 时间:
2020-06-30 17:43:10
阅读次数:
66