int n = 0; int m = 0; while (n 30 && n 50) { m=m+10; } ...
分类:
其他好文 时间:
2015-03-13 22:13:26
阅读次数:
262
不错的一道dp题目,一开始想了一种N*N的dp,后面就一直想怎么优化,然后就一直都在坑中了。这题题解还是看早了,应该再多想会的,多换种表示状态的方法再想想。dp[i][j]=dp[i-j][j]+dp[i-j][j-1] 表示已经用了i并且最后一位为j的所有情况。dp[0][0]=1 其中i#inc...
分类:
其他好文 时间:
2015-03-13 22:12:53
阅读次数:
183
转载自原文地址:http://gao-xianglong.iteye.com/blog/2166444前言关于Apache的DbUtils中间件或许了解的人并不多,大部分开发人员在生成环境中更多的是依靠Hibernate、Ibatis、Spring JDBC、JPA等大厂提供的持久层技术解决方案,或...
分类:
数据库 时间:
2015-03-13 22:15:11
阅读次数:
243
在Android开发中经常会碰到动画,看到别的应用有很酷炫的应用时,总是想怎么去实现,但是每次都是发现感觉是知道怎么做的,实际做起来还是无从下手的感觉,究其原因还是Android动画方面的知识不全面,这几天利用空闲时间研究了下Android动画知识,当作学习日记,大家也好有所借鉴。Android主要...
分类:
移动开发 时间:
2015-03-13 22:14:11
阅读次数:
211
练习:一、石头、剪刀、布,编辑程序//int a=r.Next(0,3); //int b=r.Next(0,3);//switch (a) //{ // case 0://剪刀 // x = "剪刀"; // break; // case 1://石头 // x = "石头"; // break;...
分类:
其他好文 时间:
2015-03-13 22:15:01
阅读次数:
141
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:
其他好文 时间:
2015-03-13 22:13:50
阅读次数:
131
canvas标签只是图形容器,您必须使用脚本来绘制图形。 getContext() 方法可返回一个对象,该对象提供了用于在画布上绘图的方法和属性。——获取上下文对象。 getContext("2d") 对象属性和方法,可用于在画布上绘制文本、线条、矩形、圆形等等。 fillRect(l,t,w...
分类:
其他好文 时间:
2015-03-13 22:14:12
阅读次数:
189
Writer:BYSocket(泥沙砖瓦浆木匠)微博:BYSocket豆瓣:BYSocket容器是Java语言学习中重要的一部分。泥瓦匠我的感觉是刚开始挺难学的,但等你熟悉它,接触多了,也就“顺理成章”地知道了。Java的容器类主要由两个接口派生而出:Collection和Map。一、Collect...
分类:
编程语言 时间:
2015-03-13 22:12:12
阅读次数:
303
linux0.11 源代码阅读记录linux0.11 源代码阅读记录阅读了 BIOS 的功能,连接在这里 ,接下来要看的汇编了,然后了解 bootsect,我的参考书籍暂时是《linux 内核设计的艺术》 –—— (2015-03-13 19:23:43)
分类:
系统相关 时间:
2015-03-13 22:13:14
阅读次数:
180
心形加载的view效果:素材图片:源码:StarView.h 与 StarView.m//// StarView.h// Star//// Created by XianMingYou on 15/3/13.// Copyright (c) 2015年 XianMingYou. All ri...
分类:
其他好文 时间:
2015-03-13 22:12:35
阅读次数:
229
On a broken keyboard, some of the keys are worn out. So when you type some sentences, the characters corresponding to those keys will not appear on sc...
分类:
其他好文 时间:
2015-03-13 22:11:53
阅读次数:
256
Construct Binary Tree from Inorder and Postorder Traversal问题: Given inorder and postorder traversal of a tree, construct the binary tree.思路: dfs我的代码.....
分类:
其他好文 时间:
2015-03-13 22:11:25
阅读次数:
198
App.class.php 1 DB = new Driver\MySQLi($appConfig['db']); 34 35 $this->Cache = new Driver\Memcached($appConfig['app_cache_persistent_id'],$a...
分类:
Web程序 时间:
2015-03-13 22:12:14
阅读次数:
263
(1)传递引用给函数与传递指针的效果是一样的。这时,被调函数的形参就成为原来主调函数中的实参变量或对象的一个别名来使用,所以在被调函数中对形参变量的操作就是对其相应的目标对象(在主调函数中)的操作。(2)使用引用传递函数的参数,在内存中并没有产生实参的副本,它是直接对实参操作;而使用一般变量传递函数...
分类:
其他好文 时间:
2015-03-13 22:10:03
阅读次数:
123
将无限小数化为分数,有一套简单的公式。使其轻松表示出来。循环节例如:0.121212……循循环节为12。公式这个公式必须将循环节的开头放在十分位。若不是可将原数乘10^x(x为正整数)就为:12.121212……-0.121212……=12100倍 - 1倍 =99 (99和12之间一条分数线)此公...
分类:
其他好文 时间:
2015-03-13 22:10:31
阅读次数:
172
美国程序员Jon Scott Stevens,公布了他的创业公司所使用的开发工具清单。 他的语言平台是Java,开发项目是一个网站(还未上线)。所用到的工具都是开源的,可以免费得到。 在目前的创业者之中,用Java作为网站开发语言的人似乎很少。这当然不是没有原因的,Java看上去确实不像是最便...
分类:
编程语言 时间:
2015-03-13 22:10:42
阅读次数:
257
Valid Parentheses问题:Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must c...
分类:
其他好文 时间:
2015-03-13 22:11:32
阅读次数:
198