在开发中UI布局是我们都会遇到的问题,随着UI越来越多,布局的重复性、复杂度也会随之增长。 首先用得最多的应该是include,按照官方的意思,include就是为了解决重复定义相同布局的...
分类:
移动开发 时间:
2015-05-20 13:11:07
阅读次数:
269
A curated list of awesome Java frameworks, libraries and software. Inspired by other?awesome lists. Awesome Java Build Tool Bytecode Manipulation Cluster Management Code Analysis Compiler-compiler...
分类:
编程语言 时间:
2015-05-20 11:32:25
阅读次数:
222
各种 Sort 算法,包括 Quick Sort, Merge Sort, Heap Sort, Count Sort 1 package Sort; 2 3 public class Sort { 4 /* 5 * Quick Sort 6 * Tim...
分类:
其他好文 时间:
2015-05-20 07:09:30
阅读次数:
125
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.解题思路一:使用一个nums1Copy把nums1的前m个元素拷贝出来,然后把nums1Copy和nums2放进nu...
分类:
编程语言 时间:
2015-05-20 02:05:13
阅读次数:
323
题目:
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.
C代码:
/**
* Definition for singly-linked list...
分类:
其他好文 时间:
2015-05-19 22:46:09
阅读次数:
141
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.
Note:
You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additio...
分类:
其他好文 时间:
2015-05-19 22:36:53
阅读次数:
180
Lecture 7: Lists and mutability,dictionaries,pseudocode,introduction to efficiency 列表及可变性,字典,伪代码,效率Lists and mutability 列表及可变性>>> L1 = [1, 2, 3]
>>> L2 = L1
>>> print L2
[1, 2, 3]
>>> L1[0] = 4
>>> pri...
分类:
编程语言 时间:
2015-05-19 19:07:01
阅读次数:
149
嵌套循环连接(Nested Loop Join)循环嵌套连接是最基本的连接,正如其名所示那样,需要进行循环嵌套,嵌套循环是三种方式中唯一支持不等式连接的方式,这种连接方式的过程可以简单的用下图展示: 图1.循环嵌套连接的第一步 ...
分类:
其他好文 时间:
2015-05-19 18:53:08
阅读次数:
526
Lecture5: Bisection methods , Newton/Raphson, introduction to lists二分法,牛顿,拉复生方法,列表Bisection methods 二分法注意:
# bug: when x x = high eg.x=0.25 sqrt(x) = 0.5
# fix bug: high = max(x, 1...
分类:
编程语言 时间:
2015-05-19 16:41:21
阅读次数:
339
【书评:Oracle查询优化改写】第四章BLOG文档结构图一.1导读各位技术爱好者,看完本文后,你可以掌握如下的技能,也可以学到一些其它你所不知道的知识,~O(∩_∩)O~:①check的特殊用法②sql优化中使用merge语句代替update语句(重点)本文如有错误或不完善的地方请大家多多指正..
分类:
数据库 时间:
2015-05-19 15:01:16
阅读次数:
196