码迷,mamicode.com
首页 >  
搜索关键字:note    ( 7358个结果
常见的查找算法(三):插值查找
插值搜索法(Interpolation search)是利用插值公式来计算猜测搜索键值的位置。搜索方式与二分搜索相同 插值公式: 插值 = (设算数 -­ 最小数) / (最大数 -­ 最小数): [2] 搜索键值 = left + parseInt( ( key - data[ left ] ) ...
分类:编程语言   时间:2019-08-19 20:44:39    阅读次数:138
Leetcode 75. Sort Colors
https://leetcode.com/problems/sort-colors/ Medium Medium Medium Given an array with n objects colored red, white or blue, sort them in-place so that o ...
分类:其他好文   时间:2019-08-19 19:33:38    阅读次数:98
python相对导包问题
导包分为:绝对路径、相对路径在测试时发现不能够使用相对路径查过之后才知道:运行模块(如:main.py)中导包只能使用绝对路径,不能使用相对路径官方文档:Note that relative imports are based on the name of the current module. S... ...
分类:编程语言   时间:2019-08-19 19:30:14    阅读次数:94
Cannot read property 'replace' of undefined
处理方法:1.把notebookTemplate的定义放在for循环的上面就可以解决 ...
分类:其他好文   时间:2019-08-19 19:02:03    阅读次数:50
DX12 开debuggerlayer
https://social.technet.microsoft.com/Forums/azure/en-US/ef10f8eb-fee0-4cde-bb01-52d1db2ea347/win10-1709-add-feature-fails-with-error-0x800f0954?forum= ...
分类:其他好文   时间:2019-08-19 17:10:31    阅读次数:90
DTOJ #2927. Around the world4
The fourth line contains m integers bi (1?≤?bi?≤?2·109) — the number of manapoints to use the i-th spell of the first type. There are k integers ci (1 ...
分类:其他好文   时间:2019-08-19 13:15:38    阅读次数:73
Codeforces 855B:Marvolo Gaunt's Ring(枚举,前后缀)
B. Marvolo Gaunt's Ring Professor Dumbledore is helping Harry destroy the Horcruxes. He went to Gaunt Shack as he suspected a Horcrux to be present th ...
分类:其他好文   时间:2019-08-18 18:02:38    阅读次数:278
cs231n__5.1/5.2 CNN
CS231n note 5.1 CNN_history now: 略 5.2 CNN 上节课我们谈到了全连接层的概念: 对于全连接层而言,我们要做的就是在这些向量上进行操作。 例如: 但是至于卷积层,与前者截然不同的地方就是可以保持空间结构 例如下图: 一张32×32×3的图片,我们并非将它展成长向 ...
分类:其他好文   时间:2019-08-18 09:40:41    阅读次数:87
Windows Server2008 搭建DFS文件
DFS服务器文件同步
分类:Windows程序   时间:2019-08-17 23:59:41    阅读次数:181
线程生命状态
线程的状态转换: 1、新建状态用new Thread()建立一个线程对象后,该线程对象就处于新生状态。 2、就绪状态通过调用线程的start方法进入就绪状态(runnable)。注意:不能对已经启动的线程再次调用start()方法,否则会出现Java.lang.IllegalThreadStateE ...
分类:编程语言   时间:2019-08-17 21:45:44    阅读次数:98
7358条   上一页 1 ... 84 85 86 87 88 ... 736 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!