QuestionMergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.Solution 1 -- Merge SortWe can follow the meth...
分类:
其他好文 时间:
2015-09-22 06:41:04
阅读次数:
154
fastjson的API十分简洁。String text = JSON.toJSONString(obj); //序列化VO vo = JSON.parseObject("{...}", VO.class); //反序列化https://github.com/alibaba/fastjson/wik...
分类:
Web程序 时间:
2015-09-22 06:38:14
阅读次数:
165
RFID Modulation and EncodingModulationSound is converted into electricity by a telephone and then transmitted as an analog signal.These waves have 3 f...
分类:
其他好文 时间:
2015-09-22 06:38:03
阅读次数:
1440
Given two binary strings, return their sum (also a binary string).For example,a ="11"b ="1"Return"100".解题思路:直接思路,不需要拐弯。按位加,用flag 记住是否有进位,有是1,没有是0, 用St...
分类:
其他好文 时间:
2015-09-22 06:41:00
阅读次数:
193
原题链接在这里:https://leetcode.com/problems/number-of-1-bits/首先想到像Divide Two Integers用pow一次一次翻倍,然后一个一个减掉就好,但注重方法TLE了。通过Method 2 学习了一种新的API Integer.toBinaryS...
分类:
其他好文 时间:
2015-09-22 06:39:21
阅读次数:
120
https://github.com/wyouflf/xUtilsHttpUtils使用方法:普通get方法HttpUtils http = new HttpUtils();http.send(HttpRequest.HttpMethod.GET, "http://www.lidroid.co...
分类:
其他好文 时间:
2015-09-22 06:39:00
阅读次数:
201
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:
其他好文 时间:
2015-09-22 06:38:00
阅读次数:
238
原题链接在这里:https://leetcode.com/problems/dungeon-game/这是一道DP题,保存当前格到右下格所需要的最小体力,m*n的dp数组保存。更新是Math.min(走右侧最小体力,左下侧最小体力).走右侧最小体力 = Math.max(dp[i][j+1]- du...
分类:
其他好文 时间:
2015-09-22 06:39:17
阅读次数:
147
小米这次是真拼了,雷军现在不说奥氏304不锈钢、也不借鉴友商的“手感真TM的爽”,重回“跑分”之路推广了红米note2之后,这次为了小米4C的推广,来了个“高铁模式”。可是这句话最先引来的是认证为通信专业教师、科学松鼠会会员的@奥卡姆剃刀 打脸,这位通信专业人士认为“多普勒效应与快速过区切换是高铁两...
分类:
移动开发 时间:
2015-09-22 06:39:46
阅读次数:
256
1.lambda表达式不是必须的,因为其就是一个匿名函数,凡是通过lambda表达式可以完成的工作,都可以通过匿名函数来完成(当然,我们也知道,匿名函数也不是必须的)。2.lambda表达式可以极大简化我们对匿名函数的使用.3.学习lambda表达式之前你最好对匿名函数、委托、泛型的概念有所了解。M...
分类:
其他好文 时间:
2015-09-22 06:37:38
阅读次数:
218
QuestionThere are two sorted arraysnums1andnums2of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexit...
分类:
其他好文 时间:
2015-09-22 06:39:35
阅读次数:
155
学习http://blog.sina.com.cn/s/blog_601bc5cf0101d32z.html,感触最深的一句话是“做技术,一定要理论先行”。1, 虚拟机的三种网络连接方式,虚拟机提供了三种网络连接模式,分别为:1)、bridged(桥接模式):默认使用VMnet0,不提供DHCP服务...
分类:
其他好文 时间:
2015-09-22 06:38:35
阅读次数:
259
Various Licenses and Comments about ThemGNU link:http://www.gnu.org/licenses/license-list.htmlGithub: https://github.com/xgqfrms/guides原文出处:http://www...
分类:
其他好文 时间:
2015-09-22 06:36:56
阅读次数:
149
设计3个函数,分别实现已下功能:交换两个整数交换两个整形指针交换任意两个同类型的变量 1 #include 2 #include 3 #include 4 void swap_int(int* pa, int* qa) //交换两个整数 5 { 6 int temp = *pa; 7 ...
分类:
其他好文 时间:
2015-09-22 06:37:56
阅读次数:
129
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2015-09-22 06:38:14
阅读次数:
144
语法CONVERT(data_type(length),data_to_be_converted,style)data_type(length) 规定目标数据类型(带有可选的长度)。data_to_be_converted 含有需要转换的值。style 规定日期/时间的输出格式。可以使用的 styl...
分类:
数据库 时间:
2015-09-22 06:38:21
阅读次数:
162
100块钱能做啥?现在的100块钱真是一点都不值钱了。 口袋里没有三百块钱就没法出去逛街。两个人吃个简单的饭就得100。 买个衬衫100块还不够。 放余额宝里一年也就一毛多钱。但是如果你选择用100块钱来买莘生币的话。 三个月既能翻一二十倍。 如果放个一年半载至少能翻100倍。莘生币是刚发行的一种虚...
分类:
其他好文 时间:
2015-09-22 06:38:31
阅读次数:
157