码迷,mamicode.com
首页 >  
搜索关键字:ber    ( 8683个结果
matplotlib总结
主要使用matplot.pyplot import matplot.pyplot as plt plt.figure(1) plt.subplot(211) plt.plot(x,y, 'rs') plt.xlabel('x') plt.ylabel('y') plt.axis( [-1,1, -1 ...
分类:其他好文   时间:2016-11-03 18:26:20    阅读次数:171
LeetCode 202 Happy Number
Problem: Write an algorithm to determine if a number is "happy". A happy number is a number defined by the following process: Starting with any positi ...
分类:移动开发   时间:2016-11-03 09:51:54    阅读次数:261
JavaScript系列文章:自动类型转换-续
在上一篇文章中,我们详细讲解了JavaScript中的自动类型转换,由于篇幅限制,没能覆盖到所有的转换规则,这次准备详细讲解一下。 上次我们提到了对象类型参与运算时转换规则: 1). 在逻辑环境中执行时,会被转换为true 2). 在字符串环境和数字环境中,它的valueOf()方法和toStri ...
分类:编程语言   时间:2016-11-03 09:49:09    阅读次数:193
LeetCode 104. Maximum Depth of Binary Tree
Problem: Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the f ...
分类:其他好文   时间:2016-11-03 09:30:34    阅读次数:171
JavaScript原生对象总纲
一. javascript之Array类 创建js数组两种方式: var arr = []; 或var arr = new Array(); ()里可以指定长度,也可以不指定,指不指定都无所谓,因为js里的数组长度是可变的 1.concat(arr1,arr2,arr3......arrx): js ...
分类:编程语言   时间:2016-11-03 02:28:25    阅读次数:267
Plai 5: Adding functions to languae
参考了知乎的这篇文章:https://zhuanlan.zhihu.com/p/20475329 ...
分类:其他好文   时间:2016-11-02 20:38:41    阅读次数:389
一道面试题:用多线程求1000以内的素数有多少个?并给出消耗时间
我曾经去一个公司面试,遇到这么一个题目:求1000以内的素数有多少个?用多线程实现,并给出消耗时间。我想了半天,没有想出多线程的解决方案。今天因为机缘到了,我浅谈下我的解法。 这道题,显然得考虑两个问题: 1、多线程的问题 2、算法性能问题 有人觉得1000以内还考虑什么算法性能?这肯定很快。但是话 ...
分类:编程语言   时间:2016-11-02 20:25:35    阅读次数:205
Stat(),Lstat(),Fstat() 获取文件/目录的相关信息
stat 的使用 Linux有个命令,ls -l,效果如下: 这个命令能显示文件的类型、操作权限、硬链接数量、属主、所属组、大小、修改时间、文件名。它是怎么获得这些信息的呢,请看下面的讲解。 stat 的基本使用 stat:返回一个与此命 需要包含的头文件: <sys/types.h>,<sys/s ...
分类:其他好文   时间:2016-11-02 20:24:09    阅读次数:401
css3如何实现click后页面过渡滚动到顶部
var getTop = document.getElementById("get-top"); var head = document.getElementById("head"); getTop.onclick = function () { var time = setInterval(fun ...
分类:Web程序   时间:2016-11-02 20:00:40    阅读次数:233
.net面试题
1、简述 private、 protected、 public、 internal 修饰符的访问权限。 访问修饰符 说明 public 公有访问。不受任何限制。 private 私有访问。只限于本类成员访问,子类,实例都不能访问。 protected 保护访问。只限于本类和子类访问,实例不能访问。 ...
分类:Web程序   时间:2016-11-02 17:47:48    阅读次数:270
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!