1 public class RoundImageView extends ImageView { 2 private Paint paint; 3 private int roundWidth = 50; 4 private int roundHeight = 50...
分类:
移动开发 时间:
2014-08-24 11:32:42
阅读次数:
211
思路: 枚举分割点递归求解,可用DP优化。 注意递归终止条件。 注意 ^ & | 三种情况统计的不同。import java.util.HashMap;import java.util.Map;public class Solution { int countR(String terms,...
分类:
其他好文 时间:
2014-08-24 11:32:32
阅读次数:
249
废话不多说了,紧接着来讲数据库的操作吧。Come On!提到数据存储问题,数据库是不得不提的。数据库是用来存储关系型数据的不二利器。Android为开发者提供了强大的数据库支持,可以用来轻松地构造基于数据库的应用。Android的数据库应用,依托于当下最流行的开源嵌入式数据库SQLite。在Andr...
分类:
移动开发 时间:
2014-08-24 11:32:22
阅读次数:
301
原创地址: http://www.cnblogs.com/Alandre/ (泥沙砖瓦浆木匠),须要转载的,保留下! Thanks Although the world is full of suffering , it is full also of the overcoming of it. -...
分类:
编程语言 时间:
2014-08-24 11:32:12
阅读次数:
241
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, ...
分类:
其他好文 时间:
2014-08-24 11:32:02
阅读次数:
164
[1] Jingjing Liu* and Xiayang Shi, Existence of three solutions for a class of quasilinear elliptic systems involving the (p(x), q(x))-Laplacian, Nonl...
分类:
其他好文 时间:
2014-08-24 11:31:42
阅读次数:
194
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1875畅通工程再续Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submissi...
分类:
其他好文 时间:
2014-08-24 11:31:32
阅读次数:
278
任何一个用过或学过C的人对malloc都不会陌生。大家都知道malloc可以分配一段连续的内存空间,并且在不再使用时可以通过free释放掉。但是,许多程序员对malloc背后的事情并不熟悉,许多人甚至把malloc当做操作系统所提供的系统调用或C的关键字。实际上,malloc只是C的标准库中提供的一...
分类:
其他好文 时间:
2014-08-24 11:31:22
阅读次数:
260
递归求解,求出已某个箱子为底,返回最高可以放的箱子堆。DP思想优化,对于已经求过的已某个箱子为底的情况,用一个map记录下来,以后直接返回即可。 注意一些clone等一些语言细节。import java.util.ArrayList;import java.util.HashMap;import ....
分类:
其他好文 时间:
2014-08-24 11:31:12
阅读次数:
257
Summary : Uninstall office15 click-to-run extensibility Component,How to resolve Uninstall office15 click-to-run extensibility Component error.Uninsta...
分类:
其他好文 时间:
2014-08-24 11:31:02
阅读次数:
420
题意:给你n个球排成一行,初始都为黑色,现在给一些操作(L,R,color),给[L,R]区间内的求染上颜色color,'w'为白,'b'为黑。问最后最长的白色区间的起点和终点的位置。解法:先离散化,为了防止离散后错误,不仅将L,R离散,还要加入L+1,L-1,R+1,R-1一起离散,这样就绝不会有...
分类:
其他好文 时间:
2014-08-24 11:30:52
阅读次数:
206
多校综合排名前25名的学校请发送邮件到HDUACM@QQ.COM,告知转账信息(支付宝或者卡号)Divide ChocolateTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total S...
分类:
其他好文 时间:
2014-08-24 11:30:42
阅读次数:
233
------Java培训、Android培训、iOS培训、.Net培训、期待与您交流! -------NSRange(location length)NSPoint\CGPointNSSize\CGSizeNSRect\CGRect (CGPint CGSize)1、NSRange(location...
分类:
其他好文 时间:
2014-08-24 11:30:32
阅读次数:
296
本文转载自de.cel《MySQL的字符串连接函数CONCAT, CONCAT_WS,GROUP_CONCAT》在搜索Mysql中怎么实现把一列的多行数据合并成一行时,找到了group_contact函数,它比SqlServer中的select @list=@list+列名 from 表名,的形式方...
分类:
数据库 时间:
2014-08-24 11:30:22
阅读次数:
219
C++基本类型大小:在32位计算机中测试得到:sizeof(bool) == 1sizeof(char) == 1 sizeof(short) == 2sizeof(int) == 4sizeof(long) = 4sizeof(float) == 4sizeof(double) == 8类型枚举:...
分类:
编程语言 时间:
2014-08-24 11:30:12
阅读次数:
186
一、内核定时器定义:struct timer_list { struct list_head entry; unsigned long expires; void (*function)(unsigned long); unsigned long data; struc...
分类:
系统相关 时间:
2014-08-24 11:30:02
阅读次数:
241
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
其他好文 时间:
2014-08-24 11:29:52
阅读次数:
264