1.需求统计元音字母——输入一个字符串,统计处其中元音字母的数量。更复杂点的话统计出每个元音字母的数量。2.思路输入:不超过100个字符的字符串。比如:"love me love my dog"。处理:元音字母就a/e/i/o/u五个,可以分别统计出各自的数量,总数相加就可以了。输出如下:元音总次数...
分类:
其他好文 时间:
2016-01-26 23:28:28
阅读次数:
214
1.需求逆转字符串——输入一个字符串,将其逆转并输出。比如:输入字符串为:love。则输出为:evol。注:在下文中,字符串翻转也是逆序的意思。2.思路有两种大的思路:(1) StringBuffer提供了字符串翻转功能,直接利用API即可。(2) 利用String本质是char数组进行字符串逆序。...
分类:
其他好文 时间:
2016-01-26 23:17:05
阅读次数:
172
一、字符串格式化的format方法 format方法接受位置参数和关键字参数#位置参数>>> "{0} love {1}".format('I','you')'I love you' #关键字参数>>> "{a} love {b}".format(a='I',b='you')'I love you....
分类:
其他好文 时间:
2016-01-16 01:13:22
阅读次数:
375
B. Gena's CodeIt's the year 4527 and the tanks game that we all know and love still exists. There also exists Great Gena's code, written in 2016. The ...
分类:
其他好文 时间:
2016-01-15 22:51:51
阅读次数:
255
Chapter 1: Setting the Foundations The human race is a naturally inquisitive species. We just love tinkering with things. When I recently bought a ne....
分类:
Web程序 时间:
2016-01-15 20:29:40
阅读次数:
311
It's the year 4527 and the tanks game that we all know and love still exists. There also exists Great Gena's code, written in 2016. The problem this c...
分类:
其他好文 时间:
2016-01-15 06:26:15
阅读次数:
307
http://www.cnblogs.com/jww-love-study/p/5114028.html源码链接: http://pan.baidu.com/s/1i4rLm2x 密码: 4wdh
分类:
其他好文 时间:
2016-01-10 14:25:10
阅读次数:
163
数组创建,初始化'老大','2'=>'老三','1'=>'老二');if( isset($arr3) ) {print_r($arr3);}?>使用数组的值打印出数组的数据//直接通过index訪问'; }?>//通过foreach循环訪问数组里的值"我",'love'=>'爱','...
分类:
移动开发 时间:
2016-01-10 13:01:21
阅读次数:
220
容易猜测到包含s1、s2序列的串的最短长度是LCS(s1,s2) + ( len(s1)-LCS(s1,s2) )+ ( len(s2)-LCS(s1,s2) ) ,即:len(s1)+len(s2)-LCS(s1,s2)接下来求方案数,可以想到:dp[k][i][j]表示由s1前i位和s2前j位的...
分类:
其他好文 时间:
2016-01-09 11:04:34
阅读次数:
227
Mathematicians love all sorts of odd properties of numbers. For instance, they consider 945 to be an interesting number, since it is the first odd num...
分类:
其他好文 时间:
2016-01-06 00:07:10
阅读次数:
264