HTML 前端名词解释:张秋怡的回答w3school的html教程:w3school慕课网的html教程:慕课网html CSS w3school的css教程:w3schoolcss权威指南:css权威指南慕课网网页布局基础:网页布局css雪碧图的应用:css雪碧 JAVASCRIPT w3scho ...
分类:
其他好文 时间:
2016-10-23 07:51:03
阅读次数:
264
转载请注明出处: https://github.com/qiu-deqing/FE-learning Table of Contents generated with DocToc FE-learning 必备基础技能 基本开发工具 学习方法和学习目标 入门之路 继续提高 一些个人经历 Lingyu ...
分类:
其他好文 时间:
2016-10-23 07:51:48
阅读次数:
360
注意:要心细,不要错在小细节上。如int c[6];double agve; c[j]=agve;这是错误的。 ...
分类:
其他好文 时间:
2016-10-23 07:50:16
阅读次数:
167
版权声明:本文为博主原创文章,未经博主允许不得转载。 bzoj 2653 题意: 一个长度为n的序列a,设其排过序之后为b,其中位数定义为b[n/2],其中a,b从0开始标号,除法取下整。 给你一个长度为n的序列s。 回答Q个这样的询问:s的左端点在[a,b]之间,右端点在[c,d]之间的子序列中, ...
分类:
其他好文 时间:
2016-10-23 07:51:44
阅读次数:
230
1 public class Demo { 2 public static void main(String[] args) { 3 java.util.Scanner input = new java.util.Scanner(System.in); 4 int num = input.nextI ...
分类:
编程语言 时间:
2016-10-23 07:51:02
阅读次数:
463
Question Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You m ...
分类:
其他好文 时间:
2016-10-23 07:50:32
阅读次数:
271
思考:十六进制的输入->%x,定义时用int。要变成十进制输出,直接在输出时用->%d。 ...
分类:
其他好文 时间:
2016-10-23 07:51:37
阅读次数:
161
思考:这种找手绢就是,在判断是否互质。用辗转相除法(用来求最大公约数:a)进行判断。r=a%b;a=b;b=r;循环限制条件:除数b=0是结束除法。如果这时被除数a=1,则表示两个互质。 ...
分类:
其他好文 时间:
2016-10-23 07:49:12
阅读次数:
205
Atitit 贝叶斯算法的原理以及垃圾邮件分类的原理 1.1. 最开始的垃圾邮件判断方法,使用contain包含判断,只能一个关键词,而且100%概率判断1 1.2. 元件部件串联定律1 1.3. 垃圾邮件关键词串联定律 表格法可视化贝叶斯定律1 1.4. 十一、最终的计算公式2 1.5. 。这时我 ...
分类:
编程语言 时间:
2016-10-23 07:49:09
阅读次数:
270
Because using multicast with a new Subject is such a common pattern, there is a shortcut in RxJS for this: the publish() operator. This lesson introdu ...
分类:
Web程序 时间:
2016-10-23 07:47:30
阅读次数:
321
Problem: Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num = 38, the process ...
分类:
其他好文 时间:
2016-10-23 07:48:07
阅读次数:
191
思考:判断三角形是否成立,只要让任意两条边都>0就好。 注意,用double,否则无法AC ...
分类:
其他好文 时间:
2016-10-23 07:48:46
阅读次数:
140
思考:这道题考验的是罗辑思维,这个网址http://blog.csdn.net/sxhelijian/article/details/42609353的罗辑思维值得学习 ...
分类:
其他好文 时间:
2016-10-23 07:47:07
阅读次数:
185