码迷,mamicode.com
首页 >  
搜索关键字:basic calculator    ( 5003个结果
[Stanford] RPN Calculator(model improved version)
.h#import @interface CalculatorBrain : NSObject-(void)pushOperand:(double)operand;-(double)performOperation:(NSString *)operation;@property(readonly)i...
分类:其他好文   时间:2014-10-04 11:40:46    阅读次数:206
C++ Variables and Basic Types Notes
1. Type conversion:If we assign an out-of-range value to an object of unsigned type, the result is the remainder of the value modulo the number of val...
分类:编程语言   时间:2014-10-03 18:53:04    阅读次数:198
Swift 泛型參数
原文:http://www.cocoachina.com/newbie/basic/2014/0612/8802.html本页内容包含:泛型形參语句和泛型实參语句本节涉及泛型类型、泛型函数以及泛型构造器的參数,包含形參和实參。声明泛型类型、函数或构造器时,须指定对应的类型參数。类型參数相当于一个占位...
分类:编程语言   时间:2014-10-03 18:51:14    阅读次数:276
(一)Spring容器相关操作
一、spring事件spring的事件有如下两个成员。1、ApplicationEvent,容器事件,由容器发布2、ApplicationListener监听器,可以由容器中的任何监听器Bean担任(1)先顶一个spring的容器事件:package cn.study.basic;import or...
分类:编程语言   时间:2014-10-03 16:11:14    阅读次数:251
[Stanford] RPN Calculator(model)
CalculatorBrain.h//建model------菜单 > NewFile > iOS > Cocoa Touch > Objective-C class // 完成操作数入栈和完成栈上的操作#import @interface CalculatorBrain : NSObject .....
分类:其他好文   时间:2014-10-03 14:13:34    阅读次数:218
[Stanford] RPN Calculator(controller)
CalculatorViewController.h//iOS> Application > Single View Application 建立一个模板controller和空白View#import @interface CalculatorViewController : UIViewCont...
分类:其他好文   时间:2014-10-03 14:03:24    阅读次数:192
[Stanford] RPN Calculator (overall design)
RPN(Reverse Polish Notation),逆波兰表达式。RPN Calculator is a calculator that uses the Reverse Polish Notation method of user interaction, which is typicall...
分类:其他好文   时间:2014-10-03 13:11:44    阅读次数:199
JavaScript进阶系列02,函数作为参数以及在数组中的应用
有时候,把函数作为参数可以让代码更简洁。 var calculator = { calculate: function(x, y, fn) { return fn(x, y); } }; var sum = function(x, y) { return x + y; },...
分类:编程语言   时间:2014-10-03 10:44:14    阅读次数:227
《算法竞赛入门经典——训练指南》第二章题库
UVa特别题库 UVa网站专门为本书设立的分类题库配合,方便读者提交: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=442 注意,下面注有“extra”的习题并没有在书中出现,但在上面的特别题库中有,属于附加习题。 基础练习 (Basic Problems) ...
分类:其他好文   时间:2014-10-03 09:56:44    阅读次数:259
HDU-2857-Mirror and Light(计算几何)
Problem Description The light travels in a straight line and always goes in the minimal path between two points, are the basic laws of optics. Now, our problem is that, if a branch of light goes...
分类:其他好文   时间:2014-10-03 04:12:15    阅读次数:162
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!