码迷,mamicode.com
首页 >  
搜索关键字:const    ( 26295个结果
21.6.1 t3
tag:平衡树,二分 最优策略中一个点一定只选一次,否则只需要选最后一次就行了。 在确定取的点集后,按 \(t\) 从小到大取最优。 考虑 \(n^2\) 暴力,\(s\) 最大的那个一定出现在所有方案中,否则用它替换第一个点一定更优。(这里只是说明最大的一定出现,不代表它一定是第一个) 设最大的 ...
分类:其他好文   时间:2021-06-25 16:59:12    阅读次数:0
socketio 新建连接需要设置参数
web端:socket.io.js 小程序端:weapp.socket.io.js const params = { query:‘’,//连接参数 path: '/socket.io', 'force new connection':true //新开一个websocket连接 } const w ...
分类:其他好文   时间:2021-06-25 16:30:53    阅读次数:0
unicloud数据聚合处理
const db = uniCloud.database(); const collection=db.collection('sblist'); //链表查 var res=await collection.aggregate() .lookup({ from: 'uni-id-users', l ...
分类:其他好文   时间:2021-06-24 18:27:17    阅读次数:0
前端将页面(HTML页面)转化为图片(base64),同时下载到本地
话不多说,直接上代码。 //首先下载插件 npm install dom-to-image // 将html页面内容转化为png图片引入的dom-to-image import domtoimage from 'dom-to-image'; var node = document.getElemen ...
分类:Web程序   时间:2021-06-23 16:23:50    阅读次数:0
vue-cli2/3打包增加版本号,解决缓存问题
vue-cli 2.0 在webpack.prod.conf.js代码配置 最顶层 增加 const version = new Date().getTime() cosnt webpackConfig = merge(baseWebpackConfig, { ..., // 此处省略 // 增加o ...
分类:其他好文   时间:2021-06-22 18:18:12    阅读次数:0
Vue3.0 项目中使用事件总线
vue2.x的项目里,通过 new 一个 Vue 实例的方式,让它来充当事件总线,管理非父子组件之间的事件派发响应。 先创建一个eventBus.js文件,编辑如下 import Vue from "vue"; const eventBus = new Vue(); export default e ...
分类:其他好文   时间:2021-06-22 18:05:54    阅读次数:0
webpackPlugin处理index.html到dist
1.webpack.config.js中导入 const HtmlWebpackPlugin = require('html-webpack-plugin') 2.pulgin中新增 new HtmlWebpackPlugin({ template:'index.html' }) 3.需要删除out ...
分类:Web程序   时间:2021-06-21 20:44:37    阅读次数:0
题解 P3938 斐波那契
Solution 设$f_i$ 为斐波那契数列第 \(i\) 项 , \(f_0=0,f_1=1\) , 第一只兔子在第一月出生 考虑每次产生新兔子的过程 , 可以发现第 \(i\) 月 \((i\geq3)\) 出生的第 \(j\) 个兔子的编号为 \(f_{i-1}+j\) , 它的父亲的也就是 ...
分类:其他好文   时间:2021-06-21 20:00:18    阅读次数:0
题解 P4427 [BJOI2018]求和
Solution lca+前缀和 快读不要忘写c= 复杂度 \(O(nk)\) Code #include<iostream> #include<cstdio> #include<cstdlib> #define ll long long using namespace std; const int ...
分类:其他好文   时间:2021-06-21 19:59:39    阅读次数:0
【linux】驱动-12-并发与竞态
前言 内核驱动的并发&竟态很容易理解,其解决方法也不能,看看例程就可以了。 对于API,看看内核源码和内核文档即可。 原文链接:https://www.cnblogs.com/lizhuming/p/14907262.html 12. 并发&竞态 本章内容为驱动基石之一。 驱动只提供功能,不提供策略 ...
分类:系统相关   时间:2021-06-21 19:57:37    阅读次数:0
26295条   上一页 1 ... 3 4 5 6 7 ... 2630 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!