Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 题目意思很简单....
分类:
其他好文 时间:
2015-02-04 12:41:16
阅读次数:
132
Rose安装 最近需要uml,原来初步学习过rose,下面是这次的安装过程: 参考博客:http://www.cnblogs.com/leaven/p/3718361.html 谢谢分享 解压安装文件: 打开bin文件: 点击其中的setup.exe文件 -> 进入安装界面 -> 点击Install...
分类:
其他好文 时间:
2015-02-04 12:41:23
阅读次数:
205
如下所示: 1 public static void main(String[] args) 2 { 3 String url = "http://bbs.szshequ.org/user/login.html"; 4 System.out....
分类:
其他好文 时间:
2015-02-04 12:38:52
阅读次数:
121
在Web开发中经常会碰到需要动态监听输入框值变化的情况,可以使用onchange、onblur 事件,但是要失去焦点时才能触发事件,这里介绍onpropertychange实现动态监听input值1.IE浏览器$id = $("#id");$id.onpropertychange = functio...
分类:
其他好文 时间:
2015-02-04 12:38:51
阅读次数:
228
(function(){ var ISCHINESE = /[\u4e00-\u9fa5]/; var getData = function( value , maxLenth , isStrick ){ value = value + ''; var total = 0 , legelInd...
分类:
其他好文 时间:
2015-02-04 12:38:52
阅读次数:
78
sub是子模块,可以调用但是没有返回值,function是有返回值的。public sub 可以在其它form里调用,而private sub 只能在当前form里调用。vb里的if else ,switch ,for ,while等语句对应语句:If Then [Else ]If Then...
分类:
其他好文 时间:
2015-02-04 12:36:27
阅读次数:
120
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ofs...
分类:
其他好文 时间:
2015-02-04 12:36:35
阅读次数:
104
一、常识了解1.GBK包含GB2312,即如果通过GB2312编码后可以通过GBK解码,反之可能不成立;2.java.nio.charset.Charset.defaultCharset()获得平台默认字符编码;3.getBytes() 是通过平台默认字符集进行编码;二、中文乱码出现在学习任何一门技...
分类:
其他好文 时间:
2015-02-04 12:36:25
阅读次数:
123
国内开源项目Relate links:http://www.csdn.net/article/2013-11-29/2817656-baidu-open-platform //百度开源项目http://tencentopen.github.io/ //腾讯开源https://github.com/a...
分类:
其他好文 时间:
2015-02-04 12:37:23
阅读次数:
115
^参与运算的两个值,如果两个相应bit位相同,则结果为0,否则为1。即: 0^0 = 0, 1^0 = 1, 0^1 = 1, 1^1 = 0按位异或的3个特点:(1) 0^0=0,0^1=1 0异或任何数=任何数(2) 1^0=1,1^1=0 1异或任何...
分类:
其他好文 时间:
2015-02-04 12:37:08
阅读次数:
97
虚拟机自动启动###先查看要启动的虚拟机uuid,再用第二条命令设置自动启动。[root@xenserver-flt ~]# xe vm-list[root@xenserver-flt ~]# xe vm-param-set uuid=6beb4fca-7b93-d9fb-bcd2-dad63547...
分类:
其他好文 时间:
2015-02-04 12:37:58
阅读次数:
85
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number...
分类:
其他好文 时间:
2015-02-04 12:36:32
阅读次数:
114