码迷,mamicode.com
首页 >  
搜索关键字:upper    ( 2194个结果
C# TextBox控件之大小写自动转换
VS开发C#程序时TextBox的属性中有个Charactercasing属性:默认为normal,把它改为Upper,这样无论你输入的是大写还是小写,在文本框中显示出的都是大写,如果改为Lower的话就是小写.还可以使用如下方法实现:1 private void textBox1_KeyPress...
分类:Windows程序   时间:2014-11-21 18:06:03    阅读次数:244
Spiral Matrix
ProblemGiven aNXN matrix, starting from the upper right corner of the matrix start printingvalues in a counter-clockwise fashion. E.g.: Consider N = 4...
分类:其他好文   时间:2014-11-21 10:20:38    阅读次数:179
STL 二分查找三兄弟(lower_bound(),upper_bound(),binary_search())
一:起因 (1)STL中关于二分查找的函数有三个:lower_bound 、upper_bound 、binary_search  —— 这三个函数都运用于有序区间(当然这也是运用二分查找 的前提),下面记录一下这两个函数; (2)ForwardIter lower_bound(ForwardIter first, ForwardIter last,const _Tp& val)算法返回一个...
分类:其他好文   时间:2014-11-20 23:47:22    阅读次数:152
常用巡检语句(oracle)
1. **查表空间大小** SELECT Upper(F.TABLESPACE_NAME) "表空间名", D.TOT_GROOTTE_MB "表空间大小(M)", D.TOT_GROOTTE_MB - F.TOTAL_BYTES "已使用空间(M)", To_char(Round(( D.TOT_GROOTTE_MB - F.TOTAL_BYTES ...
分类:数据库   时间:2014-11-20 20:31:01    阅读次数:210
x86内存映射
Contents    1 "Low" memory (  1.1 Overview 1.2 BIOS Data Area (BDA) 1.3 Extended BIOS Data Area (EBDA) 1.4 ROM Area 2 "Upper" Memory (> 1 MiB) 3 See Also 3.1 External ...
分类:其他好文   时间:2014-11-20 18:51:43    阅读次数:995
lower_bound 和 upper_bound的用法
#include#include#include#include#include#include#include#include#include#includeusing namespace std;int a[5]={3,4,11,51,61};int main(){ int pos1,...
分类:其他好文   时间:2014-11-19 00:05:48    阅读次数:212
Length of Last Word输出最后单词的字母个数
Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe...
分类:其他好文   时间:2014-11-18 23:56:33    阅读次数:254
vim 高亮显示配置
/etc/vim/vimrcset showmatch "bracket matchset matchtime=5 "bracket match time 5 set ignorecase "ingnore upper and lower when seekset incsearch set for...
分类:系统相关   时间:2014-11-17 10:39:01    阅读次数:193
oracle 常用函数
一、字符函数字符函数是oracle中最常用的函数,我们来看看有哪些字符函数:lower(char):将字符串转化为小写的格式。upper(char):将字符串转化为大写的格式。length(char):返回字符串的长度。substr(char, m, n):截取字符串的子串,n代表取n个字符的意思,...
分类:数据库   时间:2014-11-13 16:18:45    阅读次数:300
Length of Last Word
Length of Last WordGiven a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.I...
分类:其他好文   时间:2014-11-12 00:22:45    阅读次数:215
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!