码迷,mamicode.com
首页 >  
搜索关键字:ons    ( 21970个结果
python Aiohttp 异步HTTP
示例 # pip install aiohttp import asyncio import aiohttp headers = { "Referer": "https://vod.bunediy.com", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; ...
分类:编程语言   时间:2021-05-24 02:57:18    阅读次数:0
快速排序
#快速排序模板 快速排序算法的证明与边界分析 算法证明 算法证明使用算法导论里的循环不变式方法 快排模板(以j为分界) 快排属于分治算法,分治算法都有三步: 分成子问题 递归处理子问题 子问题合并 void quick_sort(int q[], int l, int r) { //递归的终止情况 ...
分类:编程语言   时间:2021-05-24 02:54:07    阅读次数:0
javascript-创建对象
/* //一、this指向 let student = { stuName: '黄婷婷', study: function () { console.log(this.stuName + ' 学习') } } //this指向student student.study()//黄婷婷 学习 //thi ...
分类:编程语言   时间:2021-05-24 01:48:16    阅读次数:0
IDEA中集成Git
一、新建项目,绑定GIT 1、新建spring boot项目 2、路径选择git本地文件地址 3、新的项目文件绑定git,将远程的git文件拷贝至项目中 二、修改文件,使用IDEA操作GIT 1、提交,右上角工具栏 2、选择需要提交的信息,写注释,并commit 3、同步到远程仓库: 三、命令行提交 ...
分类:其他好文   时间:2021-05-23 23:54:06    阅读次数:0
手写promise自定义封装多个回调函数的执行
自定义封装多个回调函数的执行 <script src="./Promise.js"></script> let p = new Promise((resolve, reject) => { setTimeout(() => { resolve('ok'); }, 1000) }) p.then(re ...
分类:其他好文   时间:2021-05-23 23:46:05    阅读次数:0
递归算法
递归算法 什么是递归 在运行过程中,自身调用自身。 一个条件:至少应该有一个结束条件。 例子: 你和你的朋友在一个地方约见面,他已经到了,你距离你们约定的地方还差100步。 那么最后这一百步,你肯定是需要一步一步走过去。 那么咱们如何用递归的方式来实现最后这100步呢 示例代码: function ...
分类:编程语言   时间:2021-05-23 23:14:51    阅读次数:0
[ AGC002 F ] Leftmost Ball
题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 4000010, mod = 1e9 + 7; int n, k, fact ...
分类:其他好文   时间:2021-05-23 23:13:50    阅读次数:0
OS L8- 1: Protections
...
分类:其他好文   时间:2021-05-23 23:04:20    阅读次数:0
【论文精炼】 | Revisiting the Continuity of Rotation Representations in Neural Networks | 再次探讨神经网络中旋转表示的连续性 | 2020年
出自文献:Xiang S, Li H. Revisiting the Continuity of Rotation Representations in Neural Networks[J]. arXiv preprint arXiv:2006.06234, 2020. 摘要 本文详细分析了欧拉角和 ...
分类:Web程序   时间:2021-05-04 15:42:46    阅读次数:0
Windows 网络管理命令
本文列出一些常用的 Windows 网络管理命令。 (目录) ping ping: 测试网络连接情况 -n:要发送的回显请求数 -t:ping 主机直到中断 -i:生存时间ttl -6:IPv6 $ ping 192.168.20.8 -n 3 Pinging 192.168.20.8 with 3 ...
分类:Windows程序   时间:2021-05-04 15:37:20    阅读次数:0
21970条   上一页 1 ... 15 16 17 18 19 ... 2197 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!