码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
排序--快速排序
原理:快速排序需要选择一个元素作为key,然后以key为基准,比key小的放在左边,比key大的放在右边,这是一次过程。一次划分为两个区间,左右区间再用同样的方法进行排序,当最小区间排序完成,则快速排序完成,可返回结果。 key元素选择:每次选择末尾元素作为当前区间的key。 源代码:用户先录入设定 ...
分类:编程语言   时间:2021-06-13 10:10:33    阅读次数:0
Hive基础(四十):Hive 实战(一)准备
1 需求描述 统计硅谷影音视频网站的常规指标,各种 TopN 指标: -- 统计视频观看数 Top10 -- 统计视频类别热度 Top10 -- 统计出视频观看数最高的 20 个视频的所属类别以及类别包含 Top20 视频的个数 -- 统计视频观看数 Top50 所关联视频的所属类别排序 -- 统计 ...
分类:其他好文   时间:2021-06-13 10:04:44    阅读次数:0
LINUX检索 文件/目录
查找当前目录下某个文件 find . –name [filename] -i 不区分大小写 find . –iname [filename] -type 按类型进行查找,d查找目录,f查找文件 find . –type d –name [document] find . type f –name [ ...
分类:系统相关   时间:2021-06-13 09:58:24    阅读次数:0
PKUSC2021 划水记
DAY -4 提前开坑。这次以划水为主。 DAY 0 我们学校明天放假,这是好的。 刚刚才知道 PKUSC 是 IOI 赛制,却发现我不会 IOI 赛制提交代码,自闭了。 DAY 1 上午 早上 7:40 从杭州出发去余姚,报了个到。 和 @Dzhao @youjiajun 等人一起报到的。 在机房 ...
分类:其他好文   时间:2021-06-13 09:37:15    阅读次数:0
VUEX
VUEX 1、安装 cnpm install vuex--save 2、导入,src下新建一个文件夹vuex,文件夹下新建一个store.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex); 3、state 相当于vue项目的 ...
分类:其他好文   时间:2021-06-13 09:32:07    阅读次数:0
SQL Server常用处理
1 数据库不能分离(分离时,老提示占用) --查询数据库得连接Idselect spid from sysprocesses where dbid=db_id('test') kill 61 --这个是上边语句的查询结果 --分离数据库 use master go exec sp_detach_db ...
分类:数据库   时间:2021-06-13 09:30:56    阅读次数:0
LAKESPY Technical Support
We can share some information about fishing, and how to use the Lakespy. If you still have problem, please send me email to cenxudong@126.com, and cal ...
分类:其他好文   时间:2021-06-11 18:42:42    阅读次数:0
EPPlus - 操作Excel
look at me Some common mistakes Don't use localized function names. Only english names (such as SUM, IF, VLOOKUP, etc) are supported. Don't use semico ...
分类:其他好文   时间:2021-06-11 18:40:41    阅读次数:0
SpringBoot 发送邮件
1、引入依赖 <!--邮件--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> 2、配置地址 sprin ...
分类:编程语言   时间:2021-06-11 18:37:22    阅读次数:0
浏览器允许跨域运行字符串
open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --flag-switches-begin --disable-features=SameSiteByDefaultCookies,CookiesWitho ...
分类:其他好文   时间:2021-06-11 18:20:14    阅读次数:0
28727条   上一页 1 ... 7 8 9 10 11 ... 2873 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!