题目链接Problem discriptionGiven two sorted integer
arrays A and B, merge B into A as one sorted array.Note:You may assume that A
has enough space (size t...
分类:
其他好文 时间:
2014-06-16 11:12:36
阅读次数:
192
1. json-lib是一个java类库,提供将Java对象,包括beans, maps,
collections, java arrays and XML等转换成JSON,或者反向转换的功能。2. json-lib 主页
:http://json-lib.sourceforge.net/3.执行环...
分类:
编程语言 时间:
2014-06-16 08:53:53
阅读次数:
204
写了好久,终于写成了.第一次zai leecode错题,题目质量很高,适合面试,与 1.归并排序是稳定的,在java中 Arrays.sort(a);中对于对象的排序就是归并排序。对于原子类型数据使用的是快排。 2.算法复杂度,我们都知道归并排序的最好最坏最差复杂度为nlogn,空间复杂度为n,在链...
分类:
编程语言 时间:
2014-06-15 00:02:45
阅读次数:
402
方法1:若不考虑性能:使用一个新的数组target遍历原数组 发现奇数则复制到target中 然后偶数 最后显示 1 import java.util.Arrays; 2 3 public class Sperate_odd_even { 4 5 public static void s...
分类:
编程语言 时间:
2014-06-14 18:54:56
阅读次数:
212
数组的恒等 === 在文档中是这么说的:
Check whether two arrays or subarrays share the same storage and elements by comparing them with the identity operators (=== and !==).
数组的恒等 === 判断即判断两个数组所指向的元素存储区是否相同。
但 XCode 6 测试下来,结果大为迥异:var a = [1, 2, 3]; a === a 其结果却为 false,...
分类:
其他好文 时间:
2014-06-14 11:39:39
阅读次数:
280
package com.he.list;
import java.util.Arrays;
import org.w3c.dom.ls.LSException;
class ArrayList {
private int length;// the list's length
private int[] store;// store the data
// initialize ...
分类:
其他好文 时间:
2014-06-14 11:16:05
阅读次数:
224
package 单例模式; import java.awt.List;import
java.util.ArrayList;import java.util.Arrays; public class Country implements
Comparable{ int jin; int yin; i...
分类:
其他好文 时间:
2014-06-13 15:38:12
阅读次数:
183
当集合或数组内的对象需要排序时,会利用Collections.sort或Arrays.sort来进行排序,通常会implement
Comparable,来实现自定义排序,透过回传值来表示排序的大小。
分类:
编程语言 时间:
2014-06-12 19:33:37
阅读次数:
239