Calling constructors from constructors ? sited by<THINK IN JAVA> p118 When you write several constructors for a class, there are times when you’d like to call one constructor from another to avoi...
分类:
其他好文 时间:
2015-04-05 22:05:07
阅读次数:
265
一.创建maven工程 在eclipse的菜单栏选择File->New->Other->Maven->Maven Project 下一步后选择Create a simple project(skip archetype selection),如图 下一步后输入Group Id,Archive Id,Packaging后点击Finis...
分类:
Web程序 时间:
2015-04-05 22:03:56
阅读次数:
219
*博客地址
*收集的不全,以后慢慢补上。排名不分先后。
清华大学自然语言处理与社会人文计算实验室 http://nlp.csai.tsinghua.edu.cn/site2/
清华大学智能技术与系统国家重点实验室信息检索组 http://www.thuir.cn/cms/
哈工大社会计算与信息检索研究中心 http://ir.hit.edu.cn/
哈工大机器智能...
分类:
编程语言 时间:
2015-04-05 22:01:24
阅读次数:
340
//写一个递归函数DigitSum(n),输入一个非负整数,返回组成它的数字之和,例如,调用DigitSum(1729),则应该返回1+7+2+9,它的和是19
#include
int DigitSum( int n )
{
int i;
int sum = 0;
i = n % 10;
if( n != 0 )
{
n = n / 10;
sum = DigitSum...
分类:
编程语言 时间:
2015-04-05 22:03:48
阅读次数:
128
1.TextView
TextView可以说是Android中最简单的一个控件了。它主要用于在界面上显示一段文字信息。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/he...
分类:
移动开发 时间:
2015-04-05 22:01:33
阅读次数:
213
题目:
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in pla...
分类:
其他好文 时间:
2015-04-05 22:01:48
阅读次数:
178
YY's Minions
Time Limit: 2 Seconds
Memory Limit: 65536 KB
Despite YY's so much homework, she would like to take some time to play with her minions first.
YY lines her minions up to an...
分类:
其他好文 时间:
2015-04-05 22:00:47
阅读次数:
262
问题描述
给定一个长度为n的字符串S,还有一个数字L,统计长度大于等于L的出现次数最多的子串(不同的出现可以相交),如果有多个,输出最长的,如果仍然有多个,输出第一次出现最早的。
输入格式
第一行一个数字L。
第二行是字符串S。
L大于0,且不超过S的长度。
输出格式
一行,题目要求的字符串。
输入样例1:
4
bbaab...
分类:
其他好文 时间:
2015-04-05 22:01:09
阅读次数:
211
问题描述
输入两个矩阵,分别是m*s,s*n大小。输出两个矩阵相乘的结果。
输入格式
第一行,空格隔开的三个正整数m,s,n(均不超过200)。
接下来m行,每行s个空格隔开的整数,表示矩阵A(i,j)。
接下来s行,每行n个空格隔开的整数,表示矩阵B(i,j)。
输出格式
m行,每行n个空格隔开的整数,输出相乘後的矩阵C(i,j)的值。
...
分类:
其他好文 时间:
2015-04-05 22:00:09
阅读次数:
255
Cocos2d-JS提供了一个音频CocosDenshion引擎。具体使用的API是cc.AudioEngine。cc.AudioEngine有几个常用的函数:playMusic(url, loop)。播放背景音乐,参数url是播放文件的路径,参数loop控制是否循环播放,缺省情况下false。stopMusic()。停止播放背景音乐。pauseMusic()。暂停播放背景音乐。resumeMus...
分类:
Web程序 时间:
2015-04-05 22:00:05
阅读次数:
158
2.4 switch/case 替代现在模拟switch/case语句,不过也是在编译期运行。先看调用代码和输出结果// test case
cout << "test case" << endl;
Case::Run();
test case
case 2
实现代码很简单,还是模板特化template
class Case {
public:
static inline void Run()...
分类:
编程语言 时间:
2015-04-05 22:02:23
阅读次数:
223
最近刚入职一家公司发现该公司采用的框架是古老的CI1.7.2加matchbox扩展而来的遂研究一翻 发现直接在其中进行升级有些麻烦索性修改新发布的CI3.0 为多module支持
现贡献给大家使用
此版本是在CI3.0版本的基础上修改开发出来的
此版本的框架对CI3.0进行了HMVC扩展 此扩展主要通过 EX_Loader.php文件进行扩展
简要说明如下:
1.appl...
分类:
其他好文 时间:
2015-04-05 22:00:05
阅读次数:
192
题目Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.For example:
Given the following binary tree,
1...
分类:
其他好文 时间:
2015-04-05 22:00:55
阅读次数:
201
初识USB
由于项目需求,需要USB这块,花了几天时间了解了下USB方面的知识,的确挺难的!USB是个挺难啃的家伙,当时看了一遍看的一头雾水,不过几天下来还是有所收获的。顺便记录下自己学习的过程,一遍以后查看。
一、USB介绍
USB(Univetsal Serial Bus)的缩写,即通用串行总线。是现在通讯设备中不可或缺的一部分,可以这么说,电子工程师不懂U...
分类:
其他好文 时间:
2015-04-05 21:59:22
阅读次数:
263
/*
在终端输入多行,找出有“ould”的行,并打印,如:love could you and I with fate conspireTo grasp this sorry scheme of things entire,
Would not we shatter it to bitd - and then.
则输出:
Au,love could you and I with fate cons...
分类:
编程语言 时间:
2015-04-05 21:59:55
阅读次数:
180
看了文章的标题,是不是好像一个技术人员在写一篇反对产品经理的檄文?不是,因为我也是无比龟毛的处 女座啊,我这人不但对工作、对生活都很处 女座,做技术做产品也一样,经常把各种极致挂在嘴边。但是近几个月针对一款新产品我们这支内部创业团队深入到市场、产品、研发的交叉工作中,也深入了解了一些成王败寇产品的历程,期间也没少和有经验的人士进行交流学习,再也不敢时时刻刻处处要求各种极致了,难道产品汪们就是犯了我...
分类:
其他好文 时间:
2015-04-05 22:01:13
阅读次数:
215
Palindrome Partitioning II
Given a string s, partition s such that every substring of the partition is a palindrome.
Return the minimum cuts needed for a palindrome partitioning of s.
...
分类:
其他好文 时间:
2015-04-05 22:00:12
阅读次数:
127