To be or not to be.That is a question!

---源于莎士比亚的《哈姆雷特》

导航

上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页

2013年8月26日 #

javascript 排序算法

摘要: 排序算法来自《JavaScript 标准教程(alpha)》,by 阮一峰目录冒泡排序选择排序插入排序合并排序快速排序参考链接冒泡排序冒泡排序(Bubble Sort)是最易懂的排序算法,但是效率较低,生产环境中很少使用。它的基本思想是,依次比较相邻的两个数,如果不符合排序规则,则调换两个数的位置。这样一遍比较下来,能够保证最大(或最小)的数排在最后一位。然后,再对最后一位以外的数组,重复前面的过程,直至全部排序完成。由于每进行一遍这个过程,在最后一个位置上,正确的数会自己冒出来,就好像“冒泡”一样,这种算法因此得名。以对数组[3, 2, 4, 5, 1] 进行从小到大排序为例,步骤如下:第一 阅读全文

posted @ 2013-08-26 10:16 Ijavascript 阅读(1506) 评论(0) 推荐(0) 编辑

2013年8月22日 #

编写 Objective-C 代码

摘要: 如果您未曾开发过 iOS 或 Mac OS X 平台的程序,那就需要开始了解它们的首要程序设计语言 Objective-C。Objective-C 并不是一种很难的语言,如果能花一点时间学习,相信您会渐渐领会到它的优雅之处。Objective-C 程序设计语言使您能进行复杂的、面向对象的编程。通过提供用于定义类和方法的语法,它扩展了标准的 ANSI C 程序设计语言。它还促进类和接口(任何类可采用)的动态扩展。如果您熟悉 ANSI C,那么下述信息应该能帮助您学习 Objective-C 的基本语法。如果您使用其他面向对象程序设计语言进行过编程,您会发现许多传统的面向对象概念,例如封装、继承、 阅读全文

posted @ 2013-08-22 15:09 Ijavascript 阅读(461) 评论(0) 推荐(0) 编辑

2013年8月12日 #

codeigniter 分页类练习

摘要: controller page页:load->library("table"); $this->load->library("pagination"); } public function index(){ $config['base_url']='http://127.0.0.1/CI/index.php/blog/index'; $config['total_rows']=$this->db->get("CI_tb")->num_rows(); $ 阅读全文

posted @ 2013-08-12 16:12 Ijavascript 阅读(287) 评论(0) 推荐(0) 编辑

2013年7月30日 #

ruby 方法重载

摘要: class MyClass def sayHello return "hello from MyClass" end def sayGoodbye return "Goodbye from MyClass" endendclass MyOtherClass < MyClass def sayHello return "Hello from MyOtherClass" end def sayGoodbye return super << "and also from MyOtherClass... 阅读全文

posted @ 2013-07-30 15:53 Ijavascript 阅读(452) 评论(0) 推荐(0) 编辑

2013年7月25日 #

thinkphp curd操作

摘要: create()) { $result =$Form->add(); if($result) { $this->success('操作成功!'); }else{ $this->error('写入错误!'); } }else{ $this->error($Form->getError()); } } public function read($id=5){ $Form=M("... 阅读全文

posted @ 2013-07-25 16:33 Ijavascript 阅读(205) 评论(0) 推荐(0) 编辑

php Magic methods __call

摘要: _color; case 'setColor': $this->_color=$first; return $this; case 'getModel': return $this->_model; case 'setModel': $this->_model=$first; return $this; ... 阅读全文

posted @ 2013-07-25 09:33 Ijavascript 阅读(201) 评论(0) 推荐(0) 编辑

2013年7月24日 #

node解析查询字符串

摘要: var http=require("http");var url=require("url");var pages=[ {id:"1",route:"",output:"Woohoo!"}, {id:"2",route:"about",output:"A simple routing width node example"}, {id:"3",route:"another page",output 阅读全文

posted @ 2013-07-24 10:48 Ijavascript 阅读(574) 评论(0) 推荐(0) 编辑

2013年7月19日 #

html5 spring demo

摘要: Follow Mouse utils.js 文件https://gist.github.com/King-fly/6034511/raw/2e28359afdfb45800948f0e6bd31aa958ba7f5cb/html5+utilsball.js 文件https://gist.github.com/King-fly/6034525/raw/4664959f6e33196b9b4520136cc67573e07c8282/ball.js 阅读全文

posted @ 2013-07-19 10:02 Ijavascript 阅读(586) 评论(0) 推荐(0) 编辑

2013年7月17日 #

html5 飞船动画

摘要: Follow Mouse function Ship(){ this.x=0; this.y=0; this.width=25; this.height=20; this.rotation=0; this.showFlame=false;}Ship.prototype.draw=function(context){ context.save(); context.translate(this.x,this.y); context.rotate(this.rotation); ... 阅读全文

posted @ 2013-07-17 18:08 Ijavascript 阅读(323) 评论(0) 推荐(0) 编辑

2013年7月16日 #

html5 鼠标跟随运动

摘要: function Arrow(){ this.x=0; this.y=0; this.color='#ffff00'; this.rotation=0;}Arrow.prototype.draw=function(context){ context.save(); context.translate(this.x,this.y); context.rotate(this.rotation); context.lineWidth=2; context.fillStyle=this.col... 阅读全文

posted @ 2013-07-16 16:52 Ijavascript 阅读(348) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页