Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.思路:使用两个指针分别以1、2的速度遍历链表,以定位出链表的中点,进而将链表分割成...
分类:
其他好文 时间:
2014-08-17 02:21:36
阅读次数:
246
一、类型转换1.强制转换(显示转换)A.变量=(需要转换的类型)变量--仅适合于同一类型内转换.例:float a; double b=3.14; a=(float)b;B.变量=Convert.To数据类型 (变量)--值类型转换.PS:TO数据类型必须用".net数据类型"来表示.例:float...
分类:
其他好文 时间:
2014-08-16 13:47:10
阅读次数:
234
Convert Sorted List to Binary Search TreeGiven a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST....
分类:
其他好文 时间:
2014-08-16 12:19:20
阅读次数:
227
首先是加密byte[] bytes = Encoding.Default.GetBytes("要转换的字符");string str = Convert.ToBase64String(bytes);然后是解密byte[] outputb = Convert.FromBase64String(str)...
分类:
其他好文 时间:
2014-08-16 10:58:20
阅读次数:
275
CONVERT 函数将某种数据类型的表达式显式转换为另一种数据类型。SQL Server中 将日期格式化.SQL Server 支持使用科威特算法的阿拉伯样式中的数据格式。在表中,左侧的两列表示将 datetime 或 smalldatetime 转换为字符数据的 style 值。给 style 值...
分类:
数据库 时间:
2014-08-16 09:40:00
阅读次数:
184
一、类型转换1.强制转换(显示转换)A.变量=(需要转换的类型)变量--仅适合于同一类型内转换.例:float a; double b=3.14;a=(float)b;B.变量=Convert.To数据类型 (变量)--值类型转换.PS:TO数据类型必须用".net数据类型"来表示.例:float ...
分类:
其他好文 时间:
2014-08-16 09:38:10
阅读次数:
169
一、类型转换1、自动转换(隐式转换)2、强制转换(显示转换)1)、用()。()内是转换后的数据类型,只能转换同一大类例:float a; double b=3.14; a=(float)b;2)、用convert。例:float a; double b=3.14;a=Convert.To singl...
分类:
其他好文 时间:
2014-08-16 00:56:29
阅读次数:
355
一、 Hive join优化
1. 尽量将小表放在join的左边,我们这边使用的hive-0.12.0,所以是自动转化的,既把小表自动装入内存,执行map side join(性能好), 这是由参数hive.auto.convert.join=true 和hive.smalltable.filesize=25000000L)参数控制(默认是25M),如果表文件大小在25M左右,可...
分类:
其他好文 时间:
2014-08-15 17:50:39
阅读次数:
272
Linux下修改图片格式
在终端上安装imagemagick
sudo apt-get install imagemagick
cd到相应的图片所在目录
#把 .png 转到 .jpg
convert *.png *.jpg
rm -r *.png...
分类:
系统相关 时间:
2014-08-15 00:08:06
阅读次数:
405
1、查找员工的编号、姓名、部门和出生日期,如果出生日期为空值,显示日期不详,并按部门排序输出,日期格式为yyyy-mm-dd。 select emp_no,emp_name,dept,isnull(convert(char(10),birthday,120),'日期不详') birthdayfrom...
分类:
数据库 时间:
2014-08-14 16:29:08
阅读次数:
313