码迷,mamicode.com
首页 >  
搜索关键字:basic calculator    ( 5003个结果
[building block] merge sort @ Python
Here is the basic algorithm about merge sort:def merge(s1,s2,s): i=j=0 while i + j < len(s): if j == len(s2) or (i < len(s1) and s1[i] < ...
分类:编程语言   时间:2014-09-18 11:17:13    阅读次数:165
CABasicAnimation 基本动画
CABasicAnimation基本动画没有真正的修改属性值创建并指定修改的属性KeyPath:CALayer属性名,不是所有的属性名都可以,只有在头文件中出现的animatable的属性才可以可以修改属性的属性,例如bounds.sizeCABasicAnimation*basic=[CABasicAnimationanimationWithKeyPath:@"bounds"];..
分类:其他好文   时间:2014-09-18 03:17:43    阅读次数:203
CAAnimationGroup 组动画
CABasicAnimation*basic=[CABasicAnimationanimationWithKeyPath:@"bounds"];basic.duration=5;basic.fromValue=[NSValuevalueWithCGRect:CGRectMake(0,0,200,200)];basic.toValue=[NSValuevalueWithCGRect:CGRectMake(0,0,300,300)];CAKeyframeAnimation*keyFrame=[CAKeyframe..
分类:其他好文   时间:2014-09-18 03:17:13    阅读次数:205
Chapter 1: Introduction
The basic problem we study in probability is:Given a data generating process, what are the properties of the outcomes?The basic problem of statistical...
分类:其他好文   时间:2014-09-16 12:33:10    阅读次数:133
PHP 连接oracle
安装oracleClientoracle-instantclient11.2-basic-11.2.0.4.0-1.x86_64.rpmoracle-instantclient11.2-devel-11.2.0.4.0-1.x86_64.rpm下载地址:http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.htmlrpm-ivhoracle-install*此时生成目录:/usr/lib/oracle/11.2..
分类:数据库   时间:2014-09-16 10:54:40    阅读次数:391
脑残集(1)把一个字符串内的正整数相加
1 #include "string" 2 typedef std::basic_string tstring; 3 int _tmain(int argc, _TCHAR* argv[]) 4 { 5 6 tstring str= _T("没2有60最脑40残只有100更脑残!...
分类:其他好文   时间:2014-09-15 19:11:49    阅读次数:154
Oracle OS认证 口令文件 密码丢失处理
Oracle OS认证 口令文件 密码丢失处理分类:Oracle Basic Knowledge2009-10-19 14:245031人阅读评论(9)收藏举报oracleos数据库sql远程登录login一.OS认证1.1OS认证介绍Oracle安装之后默认情况下是启用了OS认证的,这里提到的OS...
分类:数据库   时间:2014-09-15 15:40:19    阅读次数:253
基于Linux的USB子系统学习 --- <基础知识与USB协议概述> ing
一、参考资料   1.《USB基础知识概论》      http://www.crifan.com/files/doc/docbook/usb_basic/release/html/usb_basic.html   2.《USB in a NutShell》     http://www.beyondlogic.org/usbnutshell/usb1.shtml   3.《...
分类:系统相关   时间:2014-09-15 14:22:01    阅读次数:348
class-dump 使用
class-dump 官网地址:这里 我这里下载的是 class-dump-3.5.dmg 版本的。双击.dmg 文件,将  拉倒 /usr / local / bin 目录下,这样就可以在终端使用 class-dump 命令了。 这里我演示dump系统自带的计算器,导出它的头文件。 命令如下: class-dump -H /Applications/Calculator.app -o /...
分类:其他好文   时间:2014-09-14 18:03:17    阅读次数:211
Ubuntu 下安装 CCNx0.8.2
官网简介:The CCNx architecture is based on three basic tenets:Content is accessed by name, not machine address.Security is applied directly to the content...
分类:其他好文   时间:2014-09-13 12:01:55    阅读次数:445
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!