摘要:
The Tower of Hanoi consists of three rods, and a number of disks of different sizes which can slide onto any rod. The puzzle starts with the disks in a neat stack in ascending order of size on one rod, the smallest at the top, thus making a conical shape.The objective of the puzzle is to move the en 阅读全文
2012年6月6日
摘要:
Due to download the file types in IE judgment, if can’t find the corresponding suffix MIME of words, will automatically according to the data flow to determine the types of files.Edit web.xml in Tomcat and add:<mime-mapping> <extension>apk</extension> <mime-type>application/v 阅读全文
摘要:
Android原有的属性可能不能满足我们现在要做的事,毕竟有些人就是会天马行空的想出一些Android不会做的东西。今天就简单的写下怎样为自定义控件自定义属性,看这种描述有点晕,转过来就是控件和属性都是自定义的吧。哈~上面是运行界面,有两个自定义的Button,主要是用来区分。首先在res/values/目录下新建attrs.xml文件,用来自定义属性<?xml version="1.0" encoding="utf-8"?><resources> <declare-styleable name="MyCustom 阅读全文
2012年6月5日
摘要:
问题描述:一对兔子从出生后第三个月开始,每月生一对小兔子。小兔子到第三个月又开始生下一代小兔子。假若兔子只生不死,一月份抱来一对刚出生的小兔子,问一年中每个月各有多少只兔子。问题分析:1月2月3月4月5月6月。。。111+1=22+1=33+1+1=55+1+1+1=8。。。如上面表格数据可以看出第三个月以后兔子的对数是前两个月兔子对数的和。算法设计:用a,b分别表示每月前2个月和前1个月的兔子对数,第1和第2个月的兔子数作为初值都为1,第3个月的兔子数为c=a+b。求第4个月的兔子数时,将第4个月的前2个月和前1个月的兔子对数分别存储在a,b中,即a=b,b=c,构造循环不变式。java代码 阅读全文
摘要:
最近公司没什么项目做,大部分时间都是自己在学习,而且觉得有必要和各位园友分享、交流下自己的所学所得,所以呢,决定今天开始写博吧。嗯嗯,步入正题,很多时候Android自带的控件样式不能满足我们多样化的需求,要自己去自定义才会给人耳目一新的感觉,今天就先拿AlertDialog开导,哈~先上效果图(比较喜欢柯南O(∩_∩)O):点击enter按钮会关闭对话框,留在当前Activity,点击exit按钮则退出应用。首先是main.xml:<?xml version="1.0" encoding="utf-8"?><LinearLayout 阅读全文