在所有现代浏览器中,均能够查看原始的 XML 文件。 不要指望 XML 文件会直接显示为 HTML 页面。 查看 XML 文件 查看这个 XML 文件:note.xml 打开 XML 文件 - XML 文档将显示为代码颜色化的根以及子元素。通过点击元素左侧的加号或减号,可以展开或收起元素的结构。如需 ...
分类:
其他好文 时间:
2019-08-20 16:37:14
阅读次数:
45
pypinyin 1、安装 pip install pypinyin 2、使用方法 >>> from pypinyin import pinyin, lazy_pinyin >>> import pypinyin >>> pinyin(u'中心') [[u'zh\u014dng'], [u'x\u0 ...
分类:
编程语言 时间:
2019-08-20 10:25:52
阅读次数:
160
插值搜索法(Interpolation search)是利用插值公式来计算猜测搜索键值的位置。搜索方式与二分搜索相同 插值公式: 插值 = (设算数 - 最小数) / (最大数 - 最小数): [2] 搜索键值 = left + parseInt( ( key - data[ left ] ) ...
分类:
编程语言 时间:
2019-08-19 20:44:39
阅读次数:
138
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
导包分为:绝对路径、相对路径在测试时发现不能够使用相对路径查过之后才知道:运行模块(如:main.py)中导包只能使用绝对路径,不能使用相对路径官方文档:Note that relative imports are based on the name of the current module. S... ...
分类:
编程语言 时间:
2019-08-19 19:30:14
阅读次数:
94
处理方法:1.把notebookTemplate的定义放在for循环的上面就可以解决 ...
分类:
其他好文 时间:
2019-08-19 19:02:03
阅读次数:
50
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
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
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 note 5.1 CNN_history now: 略 5.2 CNN 上节课我们谈到了全连接层的概念: 对于全连接层而言,我们要做的就是在这些向量上进行操作。 例如: 但是至于卷积层,与前者截然不同的地方就是可以保持空间结构 例如下图: 一张32×32×3的图片,我们并非将它展成长向 ...
分类:
其他好文 时间:
2019-08-18 09:40:41
阅读次数:
87