码迷,mamicode.com
首页 >  
搜索关键字:square    ( 2122个结果
Latex 数学符号
本文完全转自 《常用数学符号的 LaTeX 表示方法》,在此转载仅仅为了便于查阅,谨向原作者致以崇高的敬意。常用数学符号的 LaTeX 表示方法(以下内容主要摘自“一份不太简短的 LATEX2e 介绍”)1、指数和下标可以用^和_后加相应字符来实现。比如:2、平方根(square root)的输入命...
分类:其他好文   时间:2015-12-04 12:41:30    阅读次数:158
Fire Net
DescriptionSuppose that we have a square city with straight streets. A map of a city is a square board with n rows and n columns, each representing a ...
分类:Web程序   时间:2015-11-29 19:29:01    阅读次数:138
SICP练习1.6-1.8
1.6 死循环1.7 1 #lang racket 2 (define (square x) (* x x)) 3 (define (sqrt-iter guess x) 4 (if (good-enough? guess x) 5 guess 6 (sqrt-iter...
分类:其他好文   时间:2015-11-28 10:33:41    阅读次数:171
Project Euler 87 :Prime power triples 素数幂三元组
Prime power triplesThe smallest number expressible as the sum of a prime square, prime cube, and prime fourth power is 28. In fact, there are exactly ...
分类:其他好文   时间:2015-11-27 21:37:09    阅读次数:201
Swift -- swift 代码
// 属性监视器class Square{ var width:Double = 0 { willSet{ println("willSet -- newValue = \(newValue), currentValue = \(width)") } didSet{ ...
分类:编程语言   时间:2015-11-26 23:10:48    阅读次数:162
加载网络图片的框架总结
Universal Image Loader:一个强大的图片加载库,包含各种各样的配置,最老牌,使用也最广泛。Picasso: Square出品,必属精品。和OkHttp搭配起来更配呦!Volley ImageLoader:Google官方出品,可惜不能加载本地图片~Fresco:Facebook出...
分类:其他好文   时间:2015-11-24 21:13:12    阅读次数:162
Android性能优化之常见的内存泄漏
前言对于内存泄漏,我想大家在开发中肯定都遇到过,只不过内存泄漏对我们来说并不是可见的,因为它是在堆中活动,而要想检测程序中是否有内存泄漏的产生,通常我们可以借助LeakCanary、MAT等工具来检测应用程序是否存在内存泄漏,MAT是一款强大的内存分析工具,功能繁多而复杂,而LeakCanary则是由Square开源的一款轻量第三方内存泄漏检测工具,当它检测到程序中有内存泄漏的产生时,它将以最直观的...
分类:移动开发   时间:2015-11-23 16:56:15    阅读次数:192
Project Euler 80:Square root digital expansion 平方根数字展开
Square root digital expansionIt is well known that if the square root of a natural number is not an integer, then it is irrational. The decimal expans...
分类:其他好文   时间:2015-11-22 21:37:11    阅读次数:112
I.MX6 I2C DS1337 disable square-wave output
本文主要是记录Android下的Linux应用程序关闭DS1337方波输出的程序。
分类:其他好文   时间:2015-11-20 17:05:06    阅读次数:139
LeetCode OJ:Maximal Square(最大矩形)
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.For example, given the following matr...
分类:其他好文   时间:2015-11-19 00:33:41    阅读次数:144
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!