码迷,mamicode.com
首页 >  
搜索关键字:quic    ( 463个结果
使用docker 安装linux mssql
https://segmentfault.com/a/1190000014232366 ...
分类:数据库   时间:2020-02-29 14:56:35    阅读次数:101
十分钟记住快速排序(快速排序快速记忆方法)
快速排序很简单,分为三步: 1.找中轴 2.左边快排 3.右边快排 注意事项:每一次快排之前都要判断左边的下标是否小于右边的下标 代码如下: void quick_sort(int * data,int left,int right) { if(left < right) { int index = ...
分类:编程语言   时间:2020-02-25 23:06:30    阅读次数:184
Python一行快速排序
quick_sort = lambda array: array if len(array) <= 1 else quick_sort([item for item in array[1:] if item <= array[0]]) + [array[0]] + quick_sort([item ...
分类:编程语言   时间:2020-02-24 13:16:00    阅读次数:85
springboot接收post请求
@Controller public class QuickController { @PostMapping("/quick") @ResponseBody public String quick(@RequestParam("data") String data){ return data; } ...
分类:编程语言   时间:2020-02-22 15:36:13    阅读次数:71
QT资料大全
Qt 官网 Qt 官网:https://www.qt.ioQt 下载:http://www.qt.io/downloadQt 所有下载:http://download.qt.io/archive/qtQt 官方发布下载:http://download.qt.io/official_releases/ ...
分类:其他好文   时间:2020-02-19 16:44:59    阅读次数:54
Ruby——net/http使用代理
环境配置: "ruby" 确认环境。 环境搭建好之后,直接引入内置模块使用即可。 代码样例 使用代理 运行下试试,看看结果。成功,code200, 进阶学习: "Ruby net/http官方文档" "代理IP的使用" ...
分类:Web程序   时间:2020-02-13 23:22:23    阅读次数:155
几大排序算法PHP实现
1 function swap(&$arr, $a, $b){ 2 $temp = $arr[$a]; 3 $arr[$a] = $arr[$b]; 4 $arr[$b] = $temp; 5 } 6 冒泡排序 7 //沉底法 8 function bubbleSort($arr){ 9 $flag ...
分类:编程语言   时间:2020-02-13 19:08:07    阅读次数:70
Rocket - debug - TLDebugModuleOuter
https://mp.weixin.qq.com/s/9nMo6IYmDCz7S-ALFx824g 简单介绍TLDebugModuleOuter的实现。 1. DebugModuleAccessType 定义调试模块访问宽度: 2. DebugAbstractCommandError 定义抽象命令访 ...
分类:其他好文   时间:2020-02-09 16:51:35    阅读次数:74
页面性能分析-Chrome Dev Tools
一、分析面板介绍 进行页面性能快速分析的主要是图中圈出来的几个模块功能: Network : 页面中各种资源请求的情况,这里能看到资源的名称、状态、使用的协议(http1/http2/quic...)、资源类型、资源大小、资源时间线等情况 Performance : 页面各项性能指标的火焰图,这里能 ...
分类:其他好文   时间:2020-02-09 12:05:24    阅读次数:250
java-Collection
集合框架三大接口:Iterator,Collection,Map工具类:Collections ArraysJava提供的默认排序方法1.Arrays.sort()2.Collections.sort()(底层是调用 Arrays.sort())1.对于原始数据类型,目前使用的是所谓双轴快速排序(D... ...
分类:编程语言   时间:2020-02-09 11:53:35    阅读次数:85
463条   上一页 1 ... 6 7 8 9 10 ... 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!