码迷,mamicode.com
首页 >  
搜索关键字:single    ( 5020个结果
【Java设计模式】单例模式
### 1. 概述> 单例模式是确保某一个类中有且只有一个实例。----------### 2. 饿汉式单例``` javapublic class SingletonInstance { private static SingletonInstance mInstance = new Single...
分类:编程语言   时间:2015-08-16 21:10:37    阅读次数:134
HDU 1013.Digital Roots【模拟或数论】【8月16】
Digital Roots Problem Description The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital ...
分类:其他好文   时间:2015-08-16 18:22:31    阅读次数:85
Regular Expression Matching
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:其他好文   时间:2015-08-16 17:57:09    阅读次数:116
sgu 118 Digital root
Thedigital root(alsorepeated digital sum) of anon-negative integeris the (single digit) value obtained by an iterative process ofsumming digits规律题题意 ....
分类:其他好文   时间:2015-08-16 12:01:55    阅读次数:98
Cubieboard4卡片式电脑
Cubieboard4 also named CC-A80, is a open source mini PC or single board computer which has ultra-powerful performance and mainly aims to office, games...
分类:其他好文   时间:2015-08-16 07:04:29    阅读次数:343
Regular Expression Matching
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:其他好文   时间:2015-08-16 00:33:18    阅读次数:210
Bayesian optimisation for smart hyperparameter search
Bayesian optimisation for smart hyperparameter searchFitting a single classifier does not take long, fitting hundreds takes a while. To find the best ...
分类:其他好文   时间:2015-08-15 19:59:13    阅读次数:128
Activtiy
Class OverviewAn activity is a single, focused thing that the user can do. Almost all activities interact with the user, so the Activity class takes c...
分类:其他好文   时间:2015-08-15 19:44:31    阅读次数:123
正则表达式匹配
leetcode:Regular Expression Matching Implement regular expression matching with support for ‘.’ and ‘*’. ‘.’ Matches any single character. ‘*’ Matches zero or more of the preceding element. The matc...
分类:其他好文   时间:2015-08-15 13:38:11    阅读次数:132
Fragments
AFragmentrepresents a behavior or a portion of user interface in anActivity. You can combine multiple fragments in a single activity to build a multi-...
分类:其他好文   时间:2015-08-15 13:27:13    阅读次数:118
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!