码迷,mamicode.com
首页 >  
搜索关键字:after    ( 6037个结果
TJU 4087. box
题目:Tuhao and his two small partners participated in the tournament.But in the end, they lost the chance to finish a mathematical problem.After the com...
分类:其他好文   时间:2014-06-25 18:07:35    阅读次数:333
mysql 报错之创建自定义函数
I experienced this error while trying to alter one of my stored procedures remotely on a master server. After some research, I ended up getting inform...
分类:数据库   时间:2014-06-25 15:34:33    阅读次数:471
Just a complaint about the college examinations
Well , you know. As a college student who want to find a good job after graduating  like me , scores are not that important. I just want to have some low scores which can help me graduate successfully...
分类:其他好文   时间:2014-06-25 09:59:37    阅读次数:202
Some useful methods about linkedList.
/** * Method 1: Delete the input element x  * and meanwhile keep the length of array after deleted n * @param a  the array * @param n  the length of array after deleted. * @param x  the element t...
分类:其他好文   时间:2014-06-25 08:27:27    阅读次数:171
LeetCode: Surrounded Regions [130]
【题目】 Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'. A region is captured by flipping all 'O's into 'X's in that surrounded region. For example, X X X X X O O X X X O X X O X X After running your function, the board shou...
分类:其他好文   时间:2014-06-25 08:02:30    阅读次数:205
iOS开发 编辑框被系统弹出的软键盘遮挡问题
我们在开发注册界面的时候,最后几个注册条件常常容易被系统弹出的键盘遮挡,如下图:      可以看见,邮箱条件被遮挡掉了,怎么解决呢?我是通过UITextField的代理加计算偏移量: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, ty...
分类:移动开发   时间:2014-06-25 07:28:37    阅读次数:232
Clannad: After Story
If you feel like crying you shouldn’t hold back your tears. You should let it all out while you still can, because when you get bigger sometimes you ....
分类:其他好文   时间:2014-06-24 14:53:38    阅读次数:255
Erlang进程间消息接收超时设定
Erlang消息接收函数,一般都会设计成尾递归调用自己的模式。但是这样的模式,如果没有消息则会无限的等待下去,所以为了不无限等待,这里可以加个超时设定,例如:flush() -> receive _ -> flush() after 1000 -> ok ...
分类:其他好文   时间:2014-06-24 11:02:14    阅读次数:213
赵雅智_Android的getResources()资源引用
今天做一个Android的刮刮乐项目,里面用到很多的地方用到了getResources。 // 获得图片 //参数1:res是资源的引用,参数2:id是图片的id after = BitmapFactory.decodeResource(getResources(), R.drawable.b); before = BitmapFactory.decodeResource(get...
分类:移动开发   时间:2014-06-22 22:15:06    阅读次数:278
【Leetcode】Remove Nth Node From End of List
Given a linked list, remove the nth node from the end of list and return its head. For example, Given linked list: 1->2->3->4->5, and n = 2. After removing the second node from the end, the...
分类:其他好文   时间:2014-06-22 20:02:46    阅读次数:182
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!