期刊文献+
共找到588篇文章
< 1 2 30 >
每页显示 20 50 100
ZB^(+)-tree:一种ZNS SSD感知的新型索引结构 被引量:1
1
作者 刘扬 金培权 《计算机研究与发展》 EI CSCD 北大核心 2023年第3期509-524,共16页
ZNS SSD是近年来提出的一种新型固态硬盘(solid state drive,SSD),它以分区(Zone)的方式管理和存取SSD内的数据.相比于传统SSD,ZNS SSD可以有效提升SSD的读写吞吐,降低写放大,减少SSD的预留空间.但是,ZNS SSD要求Zone内必须采用顺序写模... ZNS SSD是近年来提出的一种新型固态硬盘(solid state drive,SSD),它以分区(Zone)的方式管理和存取SSD内的数据.相比于传统SSD,ZNS SSD可以有效提升SSD的读写吞吐,降低写放大,减少SSD的预留空间.但是,ZNS SSD要求Zone内必须采用顺序写模式,并且Zone上的空间分配、垃圾回收等任务都需要用户自行控制.ZNS SSD的这些特性对于传统数据库系统的存储管理、索引、缓存等技术均提出了新的挑战.针对如何使传统的B^(+)-tree索引结构适配ZNS SSD的问题,提出了一种ZNS SSD感知的新型索引结构——ZB^(+)-tree(ZNS-aware B^(+)-tree).ZB^(+)-tree是目前已知的首个ZNS SSD感知的索引,它以B^(+)-tree为基础,利用ZNS SSD内部支持少量随机写的常规Zone(conventional zone,Cov-Zone)和只支持顺序写的顺序Zone(sequential zone,Seq-Zone),通过常规Zone来吸收对ZNS SSD的随机写操作.ZB^(+)-tree将索引节点分散存储在常规Zone和顺序Zone中,并为2种Zone内的节点分别设计了节点结构,使ZB^(+)-tree不仅能够吸收对索引的随机写操作,而且又可以保证顺序Zone内的顺序写要求.在实验中利用null_blk和libzbd模拟ZNS SSD设备,并将现有的CoW B^(+)-tree修改后作为对比索引.结果表明,ZB^(+)-tree在运行时间、空间利用率等多个指标上均优于CoW B^(+)-tree. 展开更多
关键词 ZNS SSD b^(+)树 数据库索引 CoW b^(+)-tree 分区存储
下载PDF
HyperTree:高并发B+树索引加速器 被引量:1
2
作者 吴婧雅 卢文岩 +1 位作者 鄢贵海 李晓维 《计算机研究与发展》 EI CSCD 北大核心 2023年第7期1661-1677,共17页
B+树是关系型数据库中用来加速查询的常用索引结构,通过构建平衡树维护关键属性的顺序.索引提升了数据库查询性能,但其严格的有序关系增加了数据库表的维护开销.特别是在大数据场景下,数据量激增使得索引查询和维序性能进一步下降.如何... B+树是关系型数据库中用来加速查询的常用索引结构,通过构建平衡树维护关键属性的顺序.索引提升了数据库查询性能,但其严格的有序关系增加了数据库表的维护开销.特别是在大数据场景下,数据量激增使得索引查询和维序性能进一步下降.如何平衡B+树的查询和维序性能,以及在大数据场景下提升索引查询和维序的效率,对提升索引系统性能具有重要意义.由此设计了一种专用的B+树索引加速系统,对存储和计算进行协同优化,均衡提升索引查询和维序性能.利用内存突发读写高带宽的特性设计规则的树和节点存储格式以提升内存带宽利用效率,设计高效的同构计算架构和多数据通道以提升索引操作并行度.同时设计解耦合的子树结构缓解索引维护时的树读写冲突.实验结果表明,相比于CPU,B+树索引加速系统能够提升系统查询性能超过6.84倍,提升索引维序性能提升超过29.14倍. 展开更多
关键词 b+树 现场可编程门阵列 加速器 高吞吐量 高并发 数据库查询
下载PDF
一种wandering B+tree问题解决方法 被引量:1
3
作者 杨勇鹏 蒋德钧 《计算机研究与发展》 EI CSCD 北大核心 2023年第3期539-554,共16页
为了应对磁盘和固态硬盘随机写和顺序写性能差异较大的问题,文件系统和块存储系统通常采用日志结构(log-structured)技术将随机写转换为顺序写.因此,对于日志结构存储系统数据和元数据的修改都以异地写的方式执行.在日志结构存储系统中,... 为了应对磁盘和固态硬盘随机写和顺序写性能差异较大的问题,文件系统和块存储系统通常采用日志结构(log-structured)技术将随机写转换为顺序写.因此,对于日志结构存储系统数据和元数据的修改都以异地写的方式执行.在日志结构存储系统中,B+tree常被用于管理元数据,这就会导致wandering B+tree问题,即树结点异地更新会导致树结构递归更新.目前,现有工作主要通过分离树结点的逻辑索引和物理地址,并使用额外的数据结构和物理设备空间存放树结点逻辑索引和物理地址的映射,从而避免递归更新树结构.但现有方法既引入额外空间开销,又存在额外物理设备空间非顺序写的问题.提出IBT B+tree,将树结点逻辑索引和物理地址均存放在树结构中.同时,基于IBT B+tree结构引入dirty链表设计,并提出了非递归更新的IBT B+tree下刷算法.IBT B+tree既解决了wandering B+tree问题,又不引入额外的数据结构和物理设备空间,消除了固定物理设备空间的非顺序写.分别实现IBT B+tree和基于F2FS中NAT设计的B+tree,在此基础上设计实现Monty-Dev块存储系统以评价2棵B+tree.实验表明,在HDD和SSD介质上,IBT B+tree在写放大和下刷效率方面均优于NAT B+tree. 展开更多
关键词 日志结构存储系统 块存储系统 wandering b+tree IbT b+tree 写放大
下载PDF
基于B^(*)-树的连续微流控生物芯片流层物理设计方法
4
作者 陈振 《计算机应用文摘》 2024年第16期190-193,196,共5页
作为连续微流控生物芯片设计中的关键步骤,流层物理设计是一个复杂的多目标优化问题,传统方法通常将其分为布局和布线2个阶段。为弥补这2个阶段之间的交互不足,提出了一种基于B^(*)-树的流层物理设计方法,以提高解的质量和求解效率。在... 作为连续微流控生物芯片设计中的关键步骤,流层物理设计是一个复杂的多目标优化问题,传统方法通常将其分为布局和布线2个阶段。为弥补这2个阶段之间的交互不足,提出了一种基于B^(*)-树的流层物理设计方法,以提高解的质量和求解效率。在布局阶段,采用Memetic算法更高效地搜索解空间。在布线阶段,使用考虑通道顺序的基于协商的算法,同时将布线信息反馈给布局阶段,以调整布局并减少拥挤区域和通道交叉。实验结果表明,与现有算法相比,所提算法在芯片面积、通道总长度以及通道交叉数量等方面取得了更优的效果。 展开更多
关键词 连续微流控生物芯片 流层物理设计 b^(*)-树 MEMETIC算法 布局调整
下载PDF
LI-Tree:一个基于非易失性内存和轻量级B+树的学习索引 被引量:1
5
作者 王中华 舒碧华 +3 位作者 陈书宁 刘瀚阳 崔秋 万继光 《小型微型计算机系统》 CSCD 北大核心 2023年第6期1329-1337,共9页
大数据背景下剧增的数据给经典的内存索引技术带来了巨大挑战,为了实现对海量数据的高性能索引,工业界和学术界分别从设备和结构角度推出了高性能大容量的非易失型内存(Non-Volatile Memory,NVM)和受机器学习启发的学习索引(Learned Ind... 大数据背景下剧增的数据给经典的内存索引技术带来了巨大挑战,为了实现对海量数据的高性能索引,工业界和学术界分别从设备和结构角度推出了高性能大容量的非易失型内存(Non-Volatile Memory,NVM)和受机器学习启发的学习索引(Learned Index,LI).然而目前基于NVM的学习索引结构的相关研究非常稀少,在如何结合NVM和LI来高效地索引海量数据方面还有许多问题需要解决.本文提出了一种基于NVM的新型智能索引结构LI-Tree,充分发挥了两者的优势.具体的,LI-Tree可分为三层:由机器学习模型组成的能够提高LI-Tree单点性能的模型层、由静态数组构成的减少NVM写的数据索引层和由一系列轻量级B+树组成以避免模型层插入时频繁重训练的数据层.在真实设备上评估表明,LI-Tree相比传统B+树,插入、查询和删除性能分别提高了70%、30%和130%.另外,LI-Tree与学习索引结构ALEX,PGM-Index和XIndex对比,插入性能分别提升了80%,130%和150%. 展开更多
关键词 非易失内存 索引结构 学习索引 b+树 键值存储
下载PDF
A Study of Address Shortage in a Tree Based ZigBee Network for Mobile Health Applications 被引量:1
6
作者 Ka Lun Lam Hoi Yan Tung +4 位作者 King Tim Ko Kim Fung Tsang Hoi Ching Tung Yat Wah Leung Wing Hong Lau 《Wireless Sensor Network》 2012年第5期147-153,共7页
There are increasing demands for mobile health applications. This paper reports the development of a mobile health profile which dedicates to mobile applications. The mobile health profile is developed in association ... There are increasing demands for mobile health applications. This paper reports the development of a mobile health profile which dedicates to mobile applications. The mobile health profile is developed in association with the ZigBee Health Care profile and the IEEE 11073 standard which is normally applied to non-mobile applications. Since mobile sensors have to be carried by patients, the mobile health profile must facilitate mobility. In this investigation, a ZigBee fixed-mobile network (ZFMN) is defined and developed to supplement the ZigBee Health Care Profile for patient monitoring. The mobility study of ZigBee is performed using a random waypoint OPNET simulation model. In a ZFMN, the critical issue of address shortage is identified and discussed. It is analyzed that the problematic address shortage in a ZFMN may generate a huge amount of orphaned end devices and thus the packet drop percentage may potentially rise to 70%, rendering the network unable to function properly. Without introducing additional governing schemes, it is evaluated that the communication of the entire ZigBee network may paralyze. Further vigorous test are performed (by OPNET) on the communication capability of ZFMN when devices are randomly moving and sending data in 1s. It is vital to point out that under the adverse condition of address shortage, the performance of a ZFMN is still encouraging as long as the packet drop percentage has been kept below 3% before running out of address. The conclusion drawn in this analysis is that the packet drop percentage should be kept below 3% to provide a satisfactory QoS for an effective mobile health application using ZFMN such as patient monitoring. Such finding is also important for other future mobile application design of ZigBee. The address shortage issue is left as an open problem that needs attention for a resolution. 展开更多
关键词 Mobile Health PATIENT Monitoring MObILITY Zigbee tree address ASSIGNMENT address SHORTAGE
下载PDF
An Efficient Encrypted Speech Retrieval Based on Unsupervised Hashing and B+ Tree Dynamic Index
7
作者 Qiu-yu Zhang Yu-gui Jia +1 位作者 Fang-Peng Li Le-Tian Fan 《Computers, Materials & Continua》 SCIE EI 2023年第7期107-128,共22页
Existing speech retrieval systems are frequently confronted with expanding volumes of speech data.The dynamic updating strategy applied to construct the index can timely process to add or remove unnecessary speech dat... Existing speech retrieval systems are frequently confronted with expanding volumes of speech data.The dynamic updating strategy applied to construct the index can timely process to add or remove unnecessary speech data to meet users’real-time retrieval requirements.This study proposes an efficient method for retrieving encryption speech,using unsupervised deep hashing and B+ tree dynamic index,which avoid privacy leak-age of speech data and enhance the accuracy and efficiency of retrieval.The cloud’s encryption speech library is constructed by using the multi-threaded Dijk-Gentry-Halevi-Vaikuntanathan(DGHV)Fully Homomorphic Encryption(FHE)technique,which encrypts the original speech.In addition,this research employs Residual Neural Network18-Gated Recurrent Unit(ResNet18-GRU),which is used to learn the compact binary hash codes,store binary hash codes in the designed B+tree index table,and create a mapping relation of one to one between the binary hash codes and the corresponding encrypted speech.External B+tree index technology is applied to achieve dynamic index updating of the B+tree index table,thereby satisfying users’needs for real-time retrieval.The experimental results on THCHS-30 and TIMIT showed that the retrieval accuracy of the proposed method is more than 95.84%compared to the existing unsupervised hashing methods.The retrieval efficiency is greatly improved.Compared to the method of using hash index tables,and the speech data’s security is effectively guaranteed. 展开更多
关键词 Encrypted speech retrieval unsupervised deep hashing learning to hash b+tree dynamic index DGHV fully homomorphic encryption
下载PDF
Quantification of Above-Ground Biomass and Carbon Sequestration Potential of Roadside Trees in the Plateau Department of Benin Republic
8
作者 Dende Ibrahim Adekanmbi Igor Armand Yevide +4 位作者 Kafui Inès Edna Deleke Koko Adandé Belarmain Fandohan Basile Sègbégnon Michoagan Moussahoudou Issa Agossou Bruno Djossa 《Journal of Geoscience and Environment Protection》 2023年第9期20-27,共8页
Roadside trees are effective natural solutions for mitigating climate change. Despite the usefulness of trees to carbon sequestration, there is a dearth of information on the estimation of biomass and carbon stock for... Roadside trees are effective natural solutions for mitigating climate change. Despite the usefulness of trees to carbon sequestration, there is a dearth of information on the estimation of biomass and carbon stock for roadside trees in the study area. This study aimed to estimate the carbon stock and carbon dioxide equivalent of roadside trees. A complete enumeration of trees was carried out in Kétou, Pobè and Sakété within the communes of the Plateau Department, Bénin Republic. Total height and diameter at breast height were measured from trees along the roads while individual wood density value was obtained from wood density database. The allometric method of biomass estimation was adopted for the research. The results showed that the total estimations for above-ground biomass, carbon stock and carbon equivalent from all the enumerated roadside trees were 154.53 mt, 72.63 mt and 266.55 mt, respectively. The results imply that the roadside trees contain a substantial amount of carbon stock that can contribute to climate change mitigation through carbon sequestration. 展开更多
关键词 Above-Ground biomass Allometric Model Carbon Sequestration Roadside trees bénin Republic
下载PDF
线粒体Cyt b基因在鲑科品种鉴定中的可靠性分析
9
作者 费延堻 薛晗玥 +2 位作者 王诗慧 熊雄 熊晓辉 《生物加工过程》 CAS 2024年第2期219-228,共10页
为探究Cyt b基因在鲑科鱼类品种鉴定中的可靠性,本研究从GenBank数据库中下载9种鲑科鱼类品种的Cyt b基因序列共997条。以Cyt b全基因和文献报道的两组Cyt b基因短片段(359和200 bp)为研究对象,对其序列变异和分子系统进化树进行分析,... 为探究Cyt b基因在鲑科鱼类品种鉴定中的可靠性,本研究从GenBank数据库中下载9种鲑科鱼类品种的Cyt b基因序列共997条。以Cyt b全基因和文献报道的两组Cyt b基因短片段(359和200 bp)为研究对象,对其序列变异和分子系统进化树进行分析,并筛选鲑科鱼类品种的微型DNA条形码。结果表明,仅当选用200 bp片段时,银鲑的最大种内遗传距离大于最小种间遗传距离,不存在条形码间隙(barcode gap)。同时,根据分子系统进化树分析,同一品种在基于不同Cyt b基因片段的邻接树中均聚为单系,且每一个分支的结点置信度均大于70%。因此,Cyt b可以作为条形码基因用于鲑科鱼类品种鉴定。本研究筛选获得的微型DNA条形码对鲑科鱼类品种具有良好的特异性。 展开更多
关键词 DNA条形码 鲑科鱼类 细胞色素b基因 系统进化树 遗传距离 食品安全
下载PDF
Retrieval of Antarctic sea ice freeboard and thickness from HY-2B satellite altimeter data
10
作者 Yizhuo Chen Xiaoping Pang +3 位作者 Qing Ji Zhongnan Yan Zeyu Liang Chenlei Zhang 《Acta Oceanologica Sinica》 SCIE CAS CSCD 2024年第3期87-101,共15页
Antarctic sea ice is an important part of the Earth’s atmospheric system,and satellite remote sensing is an important technology for observing Antarctic sea ice.Whether Chinese Haiyang-2B(HY-2B)satellite altimeter da... Antarctic sea ice is an important part of the Earth’s atmospheric system,and satellite remote sensing is an important technology for observing Antarctic sea ice.Whether Chinese Haiyang-2B(HY-2B)satellite altimeter data could be used to estimate sea ice freeboard and provide alternative Antarctic sea ice thickness information with a high precision and long time series,as other radar altimetry satellites can,needs further investigation.This paper proposed an algorithm to discriminate leads and then retrieve sea ice freeboard and thickness from HY-2B radar altimeter data.We first collected the Moderate-resolution Imaging Spectroradiometer ice surface temperature(IST)product from the National Aeronautics and Space Administration to extract leads from the Antarctic waters and verified their accuracy through Sentinel-1 Synthetic Aperture Radar images.Second,a surface classification decision tree was generated for HY-2B satellite altimeter measurements of the Antarctic waters to extract leads and calculate local sea surface heights.We then estimated the Antarctic sea ice freeboard and thickness based on local sea surface heights and the static equilibrium equation.Finally,the retrieved HY-2B Antarctic sea ice thickness was compared with the CryoSat-2 sea ice thickness and the Antarctic Sea Ice Processes and Climate(ASPeCt)ship-based observed sea ice thickness.The results indicate that our classification decision tree constructed for HY-2B satellite altimeter measurements was reasonable,and the root mean square error of the obtained sea ice thickness compared to the ship measurements was 0.62 m.The proposed sea ice thickness algorithm for the HY-2B radar satellite fills a gap in this application domain for the HY-series satellites and can be a complement to existing Antarctic sea ice thickness products;this algorithm could provide long-time-series and large-scale sea ice thickness data that contribute to research on global climate change. 展开更多
关键词 HY-2b satellite altimeter classification decision tree sea ice freeboard and thickness Antarctic waters
下载PDF
Learned Index和B-Tree在不同分布数据上的性能对比及优化
11
作者 沈怡琪 蔡鹏 刘松灵 《计算机应用》 CSCD 北大核心 2023年第S01期100-106,共7页
Learned Index是一种通过训练模型来建立输入数据和存储位置之间映射关系的索引,它能学习到数据间分布的信息,而不同的数据分布将影响模型训练准确率和模型复杂度之间的平衡。为了探索Learned Index适用的场景,使用不同分布、不同数据... Learned Index是一种通过训练模型来建立输入数据和存储位置之间映射关系的索引,它能学习到数据间分布的信息,而不同的数据分布将影响模型训练准确率和模型复杂度之间的平衡。为了探索Learned Index适用的场景,使用不同分布、不同数据量的数据对它和加以优化的可更新的自适应学习索引(ALEX)进行性能测试,并与B-Tree进行对比,最终发现Learned Index构建大批量数据的索引时间比B-Tree短,读操作性能、存储空间大小有明显的优势,但写操作性能较差,因此得出Learned Index更适用于大数据情景下的在线分析处理(OLAP)数据库,用于静态数据的存储和查询操作的结论。基于B-Tree的索引结构,对初版Learned Index的结构进行了优化和调整,最终使优化后Learned Index在大批量数据的读写操作性能上有明显提高,其中读操作最高达到原版Learned Index的2倍,写操作最高达到原版的3倍。 展开更多
关键词 Learned Index b-tree 可更新的自适应学习索引 在线分析处理数据库 静态数据 优化调整
下载PDF
Genetic diversity and matrilineal structure in Chinese tree shrews inhabiting Kunming,China 被引量:10
12
作者 陈仕毅 许凌 +1 位作者 吕龙宝 姚永刚 《Zoological Research》 CAS CSCD 北大核心 2011年第1期17-23,共7页
Due to their special phylogenetic position in the Euarchontoglires and close affinity to primates,tree shrews have been proposed as an alternative experimental animal to primates in biomedical research.However,the pop... Due to their special phylogenetic position in the Euarchontoglires and close affinity to primates,tree shrews have been proposed as an alternative experimental animal to primates in biomedical research.However,the population genetic structure of tree shrews has largely remained unknown and this has hindered the development of tree shrew breeding and selection.Here we sampled 80 Chinese tree shrews(Tupaia belangeri chinensis) in Kunming,China,and analyzed partial mtDNA control region sequence variation.Based on our samples and two published sequences from northern tree shrews(T.belangeri),we identified 29 substitutions in the mtDNA control region fragment(~ 604 bp) across 82 individuals and defined 13 haplotypes.Seventeen samples were selected for sequencing of the cytochrome b(Cyt b;1134 bp) gene based on control region sequence variation and were analyzed in combination with 34 published sequences to solidify the phylogenetic pattern obtained from control region data.Overall,tree shrews from Kunming have high genetic diversity and present a remarkable long genetic distance to the two reported northern tree shrews outside China.Our results provide some caution when using tree shrews to establish animal models because of this apparent genetic difference.In addition,the high genetic diversity of Chinese tree shrews inhabiting Kunming suggests that systematic genetic investigations should be conducted before establishing an inbred strain for medical and biological research. 展开更多
关键词 Chinese tree shrews MTDNA Control region Cytochorme b Genetic diversity
下载PDF
B^+-Tree的改进算法在可复用软构件库中的应用 被引量:1
13
作者 徐正权 颜爱萍 《计算机工程与应用》 CSCD 北大核心 2002年第10期199-200,205,共3页
文章通过对B+-Tree索引算法的改进,将其应用到可复用软构件库中。该改进算法继承了B+-Tree的优点,结合可复用软构件库的特点,将构件库多维数据索引转化为B+-Tree一维数据索引进行存储、查询。通过对比分析,证明了该构件库索引算法大大... 文章通过对B+-Tree索引算法的改进,将其应用到可复用软构件库中。该改进算法继承了B+-Tree的优点,结合可复用软构件库的特点,将构件库多维数据索引转化为B+-Tree一维数据索引进行存储、查询。通过对比分析,证明了该构件库索引算法大大改进了构件库中构件的查找效率。 展开更多
关键词 改进算法 可复用软构件库 构件属性 构件分类 b^+-tree索引 构件查询 数据库
下载PDF
一种新的分布式并行索引树——DPB^+-Tree
14
作者 唐继勇 白新跃 +1 位作者 杨峰 何建 《计算机科学》 CSCD 北大核心 2005年第12期75-78,共4页
随着数据规模的增大,查询越来越复杂,分布式并行索引以其高性能而逐渐成为解决复杂查询问题的有效手段。本文提出一种适合于分布式并行的新索引树结构——DPB^+-Tree,该索引树以B^+树和 hash结构为基础,其叶子结点被组织为有n个散列表元... 随着数据规模的增大,查询越来越复杂,分布式并行索引以其高性能而逐渐成为解决复杂查询问题的有效手段。本文提出一种适合于分布式并行的新索引树结构——DPB^+-Tree,该索引树以B^+树和 hash结构为基础,其叶子结点被组织为有n个散列表元的hash表链,从树的根结点到叶子结点,结点副本数量逐渐减少,并且其数量的变化是动态的。对DPB^+-Tree响应时间的仿真结果表明 DPB^+-Tree系统提高了系统的查询效率,与其它相关策略,如CPB方法比较具有较明显优势。 展开更多
关键词 分布式并行索引 b^+树 hash结构 DPb^+-tree
下载PDF
一种数据立方高效索引机制——CuboidTree
15
作者 吴永英 司宏杰 王晓鹏 《华中科技大学学报(自然科学版)》 EI CAS CSCD 北大核心 2003年第1期16-18,共3页
提出了一种高效的数据立方索引机制CuboidTree ,利用Z Order编码以保持同一数据小方内立方元组之间的多维空间邻近性 ,将数据立方查询归结为针对其中某个特定数据小方的查询 ,从而将同一数据小方中的立方元组聚簇在一起以加速响应数据... 提出了一种高效的数据立方索引机制CuboidTree ,利用Z Order编码以保持同一数据小方内立方元组之间的多维空间邻近性 ,将数据立方查询归结为针对其中某个特定数据小方的查询 ,从而将同一数据小方中的立方元组聚簇在一起以加速响应数据立方查询 .对模拟数据和真实数据进行的实验表明 ,CuboidTree不仅可以明显地提高数据立方范围查询的性能 ,而且节省了存储空间 。 展开更多
关键词 数据立方 索引机制 Cuboidtree 数据小方 zkdb-tree 联机分析处理 数据查询 聚簇
下载PDF
基于CB+-tree的时态XML索引动态更新方法 被引量:1
16
作者 马程 徐海燕 《广东石油化工学院学报》 2016年第1期44-47,共4页
针对时态XML更新问题,使用了CB+-tree索引时态XML文档和文档添加冗余空间存储,借助时态信息索引、实体地址索引双重索引和文档冗余存储方式高效地实现文档的局部更新。实验结果表明,将实体时态信息和地址索引分离,并为文档添加冗余空间... 针对时态XML更新问题,使用了CB+-tree索引时态XML文档和文档添加冗余空间存储,借助时态信息索引、实体地址索引双重索引和文档冗余存储方式高效地实现文档的局部更新。实验结果表明,将实体时态信息和地址索引分离,并为文档添加冗余空间,减少了XML文档更新时间,其效率明显提高。 展开更多
关键词 b+-tree索引 动态更新 时态XML
下载PDF
基于B^+-tree索引的多元时间序列相似查询
17
作者 郭小芳 李锋 叶华 《计算机工程与应用》 CSCD 2013年第22期139-142,145,共5页
为提高多元时间序列相似查询执行效率,采用了基于距离索引结构的相似查询算法。利用主成分分析方法对多元时间序列数据降维并在此基础上进行聚类,以聚类质心为参考点,将各类变换到一维空间,利用B+-tree结构进行索引查询,找到与查询序列... 为提高多元时间序列相似查询执行效率,采用了基于距离索引结构的相似查询算法。利用主成分分析方法对多元时间序列数据降维并在此基础上进行聚类,以聚类质心为参考点,将各类变换到一维空间,利用B+-tree结构进行索引查询,找到与查询序列最相似的k个MTS序列。实验表明查询效率和准确性都有比较大的提高。 展开更多
关键词 多元时间序列 主元分析 b+-tree索引 相似查询
下载PDF
StringB-tree在软件复用中的应用研究
18
作者 姚全珠 罗亚红 孙越 《计算机工程与应用》 CSCD 北大核心 2004年第29期166-168,共3页
提出了将StringB-tree用于解决软件复用中的参数化样式匹配问题(parameterizedpatternmatching)。通过对参数化字符串做一个变换,使用StringB-tree这种特殊的数据结构可提高匹配效率。文章的重点有两部分,一个是介绍了StringB-tree这种... 提出了将StringB-tree用于解决软件复用中的参数化样式匹配问题(parameterizedpatternmatching)。通过对参数化字符串做一个变换,使用StringB-tree这种特殊的数据结构可提高匹配效率。文章的重点有两部分,一个是介绍了StringB-tree这种特殊的数据结构的优点及其构建过程;另一个是讲怎样利用StringB-tree解决参数化样式匹配问题。 展开更多
关键词 字符串平衡树参数化字符串 参数化样式匹配 P-匹配 P-出现
下载PDF
一种基于B^+-tree索引的有效相似查询算法
19
作者 郭小芳 叶华 《西北师范大学学报(自然科学版)》 CAS 北大核心 2012年第4期33-37,共5页
提出了一种多元时间序列相似查询算法.在距离索引结构相似查询算法的基础上,利用主成分分析方法对多元时间序列进行降维,并对主成分进行聚类,在聚类质心与各类之间的范数所构成的一维空间上,对聚类建立B+-tree索引结构,然后利用k近邻查... 提出了一种多元时间序列相似查询算法.在距离索引结构相似查询算法的基础上,利用主成分分析方法对多元时间序列进行降维,并对主成分进行聚类,在聚类质心与各类之间的范数所构成的一维空间上,对聚类建立B+-tree索引结构,然后利用k近邻查询算法查找出与查询序列最相似的k个MTS序列.实验结果表明,文中算法的候选比率与查询时间明显低于Muse算法,且候选比率与查询时间受聚类个数影响不大,说明文中算法具有一定的优越性. 展开更多
关键词 多元时间序列 主元分析 b+-tree索引 相似查询
下载PDF
多核处理器支持的频繁访问B+-Tree
20
作者 熊伟 吴烨 +1 位作者 陈荦 景宁 《战术导弹控制技术》 2012年第2期36-44,共9页
传统B+-Tree自顶向下访问模式不适应于频繁访问应用模式,面向多核处理器支持,提出了针对频繁访问的FAB+-Tree(Frequent Access B+-Tree)。在B+-Tree的基础上增加了Hash辅助索引,使得访问B+-Tree是可以直接定位到叶结点,并利... 传统B+-Tree自顶向下访问模式不适应于频繁访问应用模式,面向多核处理器支持,提出了针对频繁访问的FAB+-Tree(Frequent Access B+-Tree)。在B+-Tree的基础上增加了Hash辅助索引,使得访问B+-Tree是可以直接定位到叶结点,并利用基于内存的直接访问表及位矢量列表提高更新性能。同时基于共享L2-Cache多核处理器,提出了基于流水线的FAB+-Tree多线程访问模块,并优化了该模块的共享Cache访问性能。基于开源数据库Ingres实现了FAB+-Tree和多线程访问模块,实验结果表明B+-Tree的访问性能得到显著提高。 展开更多
关键词 b+-tree FAb+-tree 多核处理器 自底向上访问
下载PDF
上一页 1 2 30 下一页 到第
使用帮助 返回顶部