四种会发生Radio Link Failure的场景- DL Physical Layer Failure (PDCCH BLER > 10%)- Random Access Problems (in Connected State)- Failure after RLC retransmissio...
分类:
其他好文 时间:
2014-08-05 00:08:48
阅读次数:
363
function ramColor() { return '#' + ('00000' + (Math.random() * 0x1000000 << 0).toString(16)).slice(-6); }
分类:
Web程序 时间:
2014-08-04 21:00:58
阅读次数:
260
生成10个不小于100000的6位数public static void main(String[] args) { Random random = new Random(); for (int i=0;i<10;i++) { System.out.println("第=="+...
分类:
编程语言 时间:
2014-08-04 20:43:17
阅读次数:
231
CSS Display - Block and Inline ElementsA block element is an element that takes up the full width available, and has a line break before and after it....
分类:
Web程序 时间:
2014-08-04 20:42:27
阅读次数:
310
应需求,需要把svn版本库的某一个目录导出来,迁成另外一个库,查了下svn相关命令,可以使用svndumpfilter.示例:svndumpfilterinclude/trunk/system<full_system_0_158_201407270000.dmp>/tmp/system.dmp注意,在回导的时候,如果提示目录不存在,需要建立相应的目录在..
分类:
其他好文 时间:
2014-08-04 18:24:38
阅读次数:
265
Custom Bag gives way to promote businesses that would otherwise not be available due to cost and lack of opportunities. When a client receives a bag, ...
分类:
其他好文 时间:
2014-08-04 13:43:37
阅读次数:
293
向上取整——Math.ceil(args) 返回一个大于或等于参数的最小整数。 例如: Math.ceil(1.5) --> 2 Math.ceil(1) --> 1 Math.ceil(-1.5) --> -1向下取整——Math.floor(args) 返回一个小于或等于参数...
分类:
编程语言 时间:
2014-08-03 22:52:36
阅读次数:
258
package com.iflytek.tree;
import java.util.Random;
/**
* 二叉查找树
* @author fgtian
*
*/
public class BinaryTree {
public static class BinaryTreeNode {
int mValue; // 数值:以int代替,可以扩展成其他的
Binary...
分类:
其他好文 时间:
2014-08-03 18:09:35
阅读次数:
211
Consider an infinite full binary search tree (see the figure below), the numbers in the nodes are 1, 2, 3, .... In a subtree whose root node is X, we can get the minimum number in this subtree by repe...
分类:
其他好文 时间:
2014-08-03 12:49:15
阅读次数:
229