码迷,mamicode.com
首页 >  
搜索关键字:strange way to expre    ( 2753个结果
POJ 2891 Strange Way to Express Integers 中国剩余定理
裸题,上模版,,嘿嘿 #include #include #include #include #include #include #include #include #include using namespace std; #define ll __int64 ll gcd(ll a, ll b) { return b == 0 ? a : gcd(b, a%b); } //求一组解(x,y...
分类:其他好文   时间:2014-06-25 19:51:56    阅读次数:138
Programming In Scala Reading Note 2
Learn to programming in funtional way如果一个方法中存在var的话,那么这个方法很可能就是指令式编程。如果一个方法中只存在val的话,那么这个方法很可能是函数式编程。我们需要尝试着把方法中的val删除掉。副作用,一个方法满足函数式编程的基本要求,但是返回值是一个U...
分类:其他好文   时间:2014-06-25 18:31:47    阅读次数:166
Customize toolbar style in LibreOffice 4.2.4.2 on Linux
It is strange but interesting to see that all the toolbars in LibreOffice 4.2.4.2 have title bar displayed on Linux operating system (Debian Wheezy wi...
分类:系统相关   时间:2014-06-24 14:30:25    阅读次数:303
NYOJ353 3D dungeon 【BFS】
3D dungeon 时间限制:1000 ms  |  内存限制:65535 KB 难度:2 描述You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be fil...
分类:其他好文   时间:2014-06-22 22:13:18    阅读次数:223
HDU2899 Strange fuction 【二分】
Strange fuction Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2982    Accepted Submission(s): 2202 Problem Description Now, here ...
分类:其他好文   时间:2014-06-22 17:53:42    阅读次数:221
Android4.0设置界面修改总结(四)
之前有跟大家分享设置Tab风格和Item圆角的实现,希望能给有需要的朋友一点点帮助,今天再和大家分享一下用ViewPager实现设置分页,小米和OPPO就是这样的设置,先来看看效果图:   为了帮助大家更清晰的理解,我单独拿出一个小例子,有需要的朋友可以下载下来看看: http://git.oschina.net/way/SettingTab/tree/master 其实要实现...
分类:移动开发   时间:2014-06-19 12:14:21    阅读次数:439
[Head First Python] - 第二章 python of comment
1- 多行注释 ''' ''' 或 """ """'''this is the standard way to include a multiple-line comment in you code'''"""this is the standard way to include a multipl...
分类:编程语言   时间:2014-06-18 15:46:56    阅读次数:264
poj 2891 Strange Way to Express Integers (非互质的中国剩余定理)
Strange Way to Express IntegersTime Limit:1000MSMemory Limit:131072KTotal Submissions:9472Accepted:2873DescriptionElina is reading a book written by R...
分类:其他好文   时间:2014-06-15 21:22:33    阅读次数:272
achieve aop through xml
The main way to achive AOP is deploying a xml file。 Now a xml file is presented to be a explanation . <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/...
分类:其他好文   时间:2014-06-15 18:35:16    阅读次数:233
MSSQL isnull
语法ISNULL ( check_expression ,replacement_value )参数 check_expression 将被检查是否为 NULL 的表达式。 check_expression 可以为任何类型。 replacement_value 当 check_expre...
分类:数据库   时间:2014-06-12 20:11:35    阅读次数:379
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!