码迷,mamicode.com
首页 >  
搜索关键字:lower    ( 3122个结果
【LeetCode】- Length of Last Word(最后一个单词的长度)
[ 问题: ] Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word does not exist, return 0. [...
分类:其他好文   时间:2014-07-22 23:01:35    阅读次数:331
LightOJ 1088 Points in Segments 二分查找
LightOJ 1088 Points in Segments 二分查找 这个不是二分答案的那种题了,是比较正常的那种集合区间中的那种元素查找的二分题目了。题意很简单,给n个有序的数,这些数分布在一个坐标轴上。给q次查找,询问在区间[x, y](这里的符号和代码的保持一致)中有多少个数据。 解法就是自己写一个二分函数upper_bound和lower_bound,然后直接计算区间即可。...
分类:其他好文   时间:2014-05-21 10:54:31    阅读次数:239
poj 1952 BUY LOW, BUY LOWER 最长下降子序列+统计不重复方案数
dp[i]=max(dp[i],dp[j]+1) ja[i] dp[i]表示长度为i的最长下降子序列的长度。 r[i]表示长度为i的最长下降子序列的方案数。 考虑这样一个问题,比如6 3 9 3,对于两个3,他们数字一样并且dp值也一样,那么r[2]的方案数是没有意义的 因为能通过第一个3扩展的也能通过第二个3扩展,所以直接把r[2]=0。 对于一次扩展若dp[j]+1==dp[i],则...
分类:其他好文   时间:2014-05-18 06:31:43    阅读次数:249
北向接口和南向接口
下面是它们的英文定义:A northbound interface is an interface that conceptualizes lower level details. It interfaces to higher level layers and is normally drawn ...
分类:其他好文   时间:2014-05-12 10:43:29    阅读次数:296
android 控制手机音量的大小 切换声音的模式
(1)程序说明    在android API的AudioManager中,提供了调节手机音量的办法。 audioMa.adjustVolume(AudioManager.ADJUST_LOWER, 0);audioMa.adjustVolume(AudioManager.ADJUST_RAISE, 0);也可以调节手机声音的模式为震动或者静音 audioMa.setRingerMode(A...
分类:移动开发   时间:2014-05-09 20:54:59    阅读次数:464
sql语法值ORACLE简介
字符函数 dual 虚表,它是一行一列,没有任何数据,常常用于测试。它是oracle特有的用于做函数测试的。 1.upper(参数) 将目标字符串转换成大写形式 select * from emp where ename=upper(‘&name’); 2.lower(参数)将目标字符串以小写的形式显示 3.length(参数)获取当前字符串的长度 4.substr(mu(目标字符串,截取的起始位置,截取的长度) select substr('hello',1,2) from dual ;--...
分类:数据库   时间:2014-05-09 01:09:32    阅读次数:451
python中的字符串处理
1.字符串转换 s.lower()   转为小写 s.upper()  转为大写 s.swapcase()   大写转为小写,小写转为大写 s.capitalize()  首字母大写 转换为int类型  string.atoi(s)   或者int(s) 转换为float类型  string.atof(s)  或者float(s) 转换为long类型   string.atol(s)...
分类:编程语言   时间:2014-05-07 04:09:36    阅读次数:433
[LeetCode] 在一堆字符串中找出包含相同字符的 group的较快方法,题 Anagrams
题目:Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.class Solution {public: vector ...
分类:其他好文   时间:2014-05-04 20:48:08    阅读次数:608
C++标准库之 Lower_Bound, upper_Bound
upper_bound lower_bound...
分类:编程语言   时间:2014-05-03 21:28:03    阅读次数:425
查询表数据的时让表内数据全大写、小写、首字母大写、前几位字母大写
selectUpper(Substring(列名, 1, 1)) + Lower(Substring(列名, 2,LEN(列名))) AS 想显示的列名,UPPER(列名) AS想显示的列名,Upper(Substring(列名, 1, 6)) + Substring(列名, 7,LEN(列名)) ...
分类:其他好文   时间:2014-05-01 21:34:46    阅读次数:449
3122条   上一页 1 ... 310 311 312 313 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!