码迷,mamicode.com
首页 >  
搜索关键字:convert    ( 4765个结果
Roman to Integer
Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.思路:从后往前遍历,如果某个数比其后一个数小,则减去该数;否则,加上该数。因为只存在Ⅳ(...
分类:其他好文   时间:2014-09-07 15:58:25    阅读次数:242
LeetCode第八题, String to Integer (atoi)
题目原文 Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible in...
分类:其他好文   时间:2014-09-07 11:03:05    阅读次数:237
递归调用函数-以字符串输出数字
递归输出字符,注意,使用putchar输出一个数字的时候需要加'0',否则。。。。 1 #include 2 3 void convert(int n) 4 { 5 int i; 6 if((i=n/10)!=0) 7 { 8 convert(i); 9 ...
分类:其他好文   时间:2014-09-07 09:48:04    阅读次数:184
php 使用curl 中文乱码问题
在使用php语言做 服务器端重定向时可能会出现中文乱码问题? 解决方法也是很简单的: $contents= file_get_contents('http://www.yitire.com/'); // 获取 页面内容 $en_contents=mb_convert_encoding($contents, 'UTF-8', 'UTF-8,GBK,GB2312,BIG5'); // 对页面...
分类:Web程序   时间:2014-09-06 18:42:13    阅读次数:191
查询3天内过生日的SQL语句
select * from T_Employeewhere DATEDIFF(day,GetDate(),Convert(varchar(5),DatePart(yyyy,GetDate()))+ '-'+Convert(varchar(5),DATEPART(mm,BirthDay)...
分类:数据库   时间:2014-09-06 18:36:53    阅读次数:377
Leetcode--Convert Sorted List to Binary Search Tree
Problem Description: Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. 分析:很容易想到的一种解法是将链表中所有的元素保存到数组中,然后每次取中间值进行构造,时间复杂度为O(n),空间复杂度为O(n)。具体...
分类:其他好文   时间:2014-09-05 18:14:11    阅读次数:223
sql2008 日期
Declare @Begindate Date; set @Begindate = getdate()Select cast(Convert(varchar(10),cast(@Begindate as date),112) as int) As Datekey, Year(@Begindate)....
分类:数据库   时间:2014-09-04 18:54:49    阅读次数:239
SQLServer中日期与字符串之间的互相转换及日期格式
近期项目用到了很多日期转换为字符串、字符串转换为日期的方法,而且也用到了很多日期格式,特整理如下,以备后用。1、日期转换为字符串、日期格式使用函数CONVERT:CONVERT(data_type[(length)],expression[,style])参数expression是任何有效的Micr...
分类:数据库   时间:2014-09-04 16:47:19    阅读次数:309
去掉时分秒,按日期查询
select*from 表 WHERE1=1andconvert(varchar(100),SC001_APPLYTIME,23)>='2014-08-27'andconvert(varchar(100),SC001_APPLYTIME,23)<='2014-08-28' convert(varc....
分类:其他好文   时间:2014-09-03 16:14:06    阅读次数:247
CONVERT(varchar(12) , getdate(), 112 )
Sqlserver中经常 要操作一些时间类型的字段转换,我又不太记得住,所以搜集了以下的一些SqlserverConvertDateTime相关的资料发表在自己的小站里,方便自己以后要用的时候寻找,望对大家也有帮助. 将sqlserver中table表的[datetime]字段值‘2007-11-0716:41:35.033’ 改为‘2007-11-0700:00:00‘去除了时分秒.[d...
分类:其他好文   时间:2014-09-03 14:57:36    阅读次数:274
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!