The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number theoreticians ...
分类:
其他好文 时间:
2018-01-25 13:13:52
阅读次数:
169
canvas可以实现不同动画效果,本文主要记录几种不同节日烟花效果实现。 实现一 效果地址 html css js 实现二 效果地址 html css js 实现三 效果地址 html css js var canvas = document.getElementById("cas"); var o ...
分类:
其他好文 时间:
2018-01-23 00:54:00
阅读次数:
314
使用强制转换 i = (const_cast<Iter>(ci)) 会造成编译错误,不能将const_iterator强制转换成iterator。 在STL中,正确的转换方法是: i = vi.begin(); advance(i, distance<ConstIter>(i,ci) ); 这种方法 ...
分类:
其他好文 时间:
2018-01-20 15:04:22
阅读次数:
187
The Hamming distance between two integers is the number of positions at which the corresponding bits are different.Now your job is to find the total H... ...
分类:
其他好文 时间:
2018-01-20 00:22:25
阅读次数:
181
摘自http://pyzh.readthedocs.io/en/latest/python-magic-methods-guide.html 11.1. 简介 本指南归纳于我的几个月的博客,主题是 魔法方法 。 什么是魔法方法呢?它们在面向对象的Python的处处皆是。它们是一些可以让你对类添加“魔 ...
分类:
编程语言 时间:
2018-01-17 18:18:38
阅读次数:
217
1033. To Fill or Not to Fill (25) With highways available, driving a car from Hangzhou to any other city is easy. But since the tank capacity of a car ...
分类:
其他好文 时间:
2018-01-16 18:45:33
阅读次数:
228
今天scrapy 发送一段url的时候,如下 里边有一对(),scrapy无法发送出去,()后边的参数不发送 解决方法: %加上括号的ASCLL码 如+的ASCLL码为2b 则应改成%2b ...
分类:
其他好文 时间:
2018-01-16 18:15:11
阅读次数:
216
from numpy import * class cluster_node: def __init__(self,vec,left=None,right=None,distance=0.0,id=None,count=1): self.left=left self.right=right self... ...
分类:
编程语言 时间:
2018-01-08 19:41:10
阅读次数:
246
题链: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2896 题解: 计算几何,骚操作 对于简单情况,即两只狗的路线均为一条线段, 可以从相对运动的角度 ...
分类:
其他好文 时间:
2018-01-07 14:25:30
阅读次数:
133
PAT 1016. Phone Bills A long distance telephone company charges its customers by the following rules: Making a long distance call costs a certain amou ...
分类:
其他好文 时间:
2018-01-06 22:13:01
阅读次数:
227