package chap02_Basic_Algorithms;import static
org.junit.Assert.*;import java.util.Arrays;import org.junit.Test;public class
SortAlgorithms { /** * 冒泡法...
分类:
其他好文 时间:
2014-06-05 15:44:15
阅读次数:
241
The right-hand sides of n-ary function and
predicate definition in canonical structure depend only on the
$\mathbf{a_i^{\circ}}$ and not on the $\math...
分类:
其他好文 时间:
2014-06-04 15:49:48
阅读次数:
179
感觉有必要把
KMDDOD_INITIALIZATION_DATA
中的这些函数指针的意思解释一下, 以便进一步的深入代码.
DxgkDdiAddDevice
前面已经说过, 这个函数的主要内容是,将BASIC_DISPLAY_DRIVER实例指针存在context中, 以便后期使用, 支持多实例.
DxgkDdiStartDevice
取得设备...
分类:
其他好文 时间:
2014-06-04 13:53:18
阅读次数:
1183
AIX Basic基本操作,要点比较详细易懂,分为十一部分。...
分类:
其他好文 时间:
2014-06-04 13:49:21
阅读次数:
566
http://poj.org/problem?id=3101这道题就是求所有分子的最小共倍数和分母的最大公约数。 1 import
java.math.BigInteger; 2 import java.util.*; 3 import java.util.Arrays; 4 public
clas...
分类:
其他好文 时间:
2014-06-02 16:48:42
阅读次数:
255
【AES】
一种对称加密算法,DES的取代者。
加密相关文章见:
【代码】
代码比较多,有一部分非本文章内容代码,具体自己看吧。
package com.uikoo9.util.encrypt;
import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.Secure...
分类:
编程语言 时间:
2014-06-02 04:49:21
阅读次数:
426
计算机网络的基础知识。作者按自己的理解不断完善计算机网络知识的认识。...
分类:
其他好文 时间:
2014-06-01 18:22:08
阅读次数:
392
两个事件独立性的定义是:事件A的发生对事件B的发生毫无影响,即从A的发生与否,我们不能推测出B是否发生。
从概率等式的表示来看就是B在A发生的情况下发生的概率等于B发生的概率本身。
进而引出了A与B同时发生的概率等于他们各自发生的概率的乘积。
从两事件的相互独立可以引出多个事件的独立性:
如果多个事件同时发生的概率等于他们各自发生的概率的乘积,那么他们是互相独立的。...
分类:
其他好文 时间:
2014-06-01 15:46:30
阅读次数:
321
title:
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Find the sum of all the primes below two million.
翻译:
10以下的质数的和为2 + 3 + 5 + 7 = 17。
请求出200,0000以下所有质数的和。
import math,time
d...
分类:
其他好文 时间:
2014-06-01 09:12:31
阅读次数:
239