- 浏览: 6011 次
- 来自: 武汉
-
文章列表
以下为R树插入和删除Java代码实现,共7个类文件,附件为LB.txt数据集,如有错误请批评指正!
package com.njupt.rtree;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.util.ArrayList;
import java.util.List;
import com.njupt.constants.Constants;
/**
* @ClassName RTree
* @Description ...
以下代码为B树的Java实现,代码共四个文件。可以更改Constants.java文件中的常量来设置为n阶B树。
package com.njupt.btree;
import java.util.List;
import com.njupt.constants.Constants;
public class BTree
{
private BTNode root; //Btree的根节点
private int sizeOfKeys; //Btree中关键字个数
/**
* 默认情况下只有一个节点且为叶子结点
*/
priv ...
<!--[if gte mso 9]><xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
</o:OfficeDocumentSettings>
</xml><![endif]-->
Netty系列之Netty 服务端创建http://www.infoq.com/cn/articles/netty-server-create
InfoQ Java http://www.infoq.com/cn/java/?utm_source ...
http://www.it165.net/admin/html/201404/2778.html
http://blog.itpub.net/15711267/viewspace-776436/ RedHat在vmware安装过程截图
http://blog.csdn.net/cto_51/article/details/12857375 VMware下的RHEL 6.4 安装gcc和gcc-c++ .