搜索资源列表
cache.zip
- 高速缓存算法
强盗分金算法
- 10名海盗抢得了窖藏的100块金子,并打算瓜分 这些战利品。这是一些讲*的海盗(当然是他们自己特有的*),他们的习惯 是按下面的方式进行分配:最厉害的一名海盗提出分配方案,然后所有的海盗(包 括提出方案者本人)就此方案进行表决。如果50%或更多的海盗赞同此方案,此方 案就获得通过并据此分配战利品。否则提出方案的海盗将被扔到海里,然后下提名 最厉害的海盗又重复上述过程-10 pirates seize a cache of 100 gold, and plan t
CorrelationDimension_luzhenbo
- 计算关联维的 Matlab 程序 - (mex 函数,超快) ----------------------------------- 文件夹说明: 1、CorrelationDimension_main.m - 程序主文件 2、LorenzData.dll - 产生Lorenz离散数据 3、normalize_1.m - 数据归一化 4、PhaSpaRecon.m - 相空间重构 5、CorrelationDimension.dll - 计算关联积分函数
lru-cache
- 使用LRU方法更新Cache 结合数据结构的相关知识,使用LRU的策略,对一组访问序列进行内部的Cache更新 并附实验报告-use LRU Cache update method combining data structures and the related knowledge, the use of the LRU strategy the group visited a sequence within the Cache update accompanied experimen
SimulateCache
- cache: you will be given a char at will and you should simulate the computer s memory and cache .-cache : you will be given a char at will and you should sim ulate the computer's memory and cache.
EmbeddingDimension_FNN
- 假近邻法(False Nearest Neighbor, FNN)计算嵌入维的Matlab程序 文件夹说明: Main_FNN.m - 程序主函数,直接运行此文件即可 LorenzData.dll - 产生Lorenz时间序列 PhaSpaRecon.m - 相空间重构 fnn_luzhenbo.dll - 假近邻计算主函数 SearchNN.dll - 近邻点搜索 buffer_SearchNN_1.dll - 近邻点搜索缓存1 buffer_Search
totstat21
- 淘特网独自开发的一套访问统计系统,经过一年的测试使用及大访问量下的压力测试,保证可以准确的统计用户的访问信息。系统提供了在线用户统计、页面访问、来路统计、IP、关键词统计等。为减轻服务器负担,本系统 使用了缓存处理.默认缓存时间为50S。你可以根据需要修改。-Amoy the Internet alone development of a visit statistical system After a year of testing and the use of large amount of
Partition
- 在n维空间(每维范围为0-1)内对插入的数值根据坐标进行分区。从一个没有分区的空间开始插入,一旦规定的cache满了就申请新的cache空间。cache全满后存数值于文件。分区每次一分为2n,内建有2n叉树结构用于管理。
CProgram
- 用C语言实现的关于栈、文件、排序、缓存区等的功能模拟。-Implemented in C on the stack, file, sort, cache and other analog functions.
Mutual_Information
- 互信息法求混沌序列的最优时延 文件说明: 1、Mutual_Information_main.m 主文件,直接运行此程序即可 2、LorenzData.dll 产生Lorenz离散序列 3、Mutual_Information.dll 互信息函数 4、buffer.dll 缓存文件-Mutual information method for optimal time-delay chaotic sequence document describes: 1,
3108MultiChanAOBuffer_VB6
- 利用vb6访问3180多通道AO缓存,在编程实践中具有一定的价值-Use VB6 to visit more than 3180 channel AO cache, in the programming practice, the value of a certain
exercice5
- exercise 5 ssd6 cache
huffman
- 基于哈夫曼技术压缩和解压。 计算机中任意文件的读与存都是从缓存里面读取 0 、 1 代码转化成, 即文件其是就是二进制的。所以可以把每8位转换成相应的ASCII码。从而用哈夫曼编码, 将等长编码转化成非等长编码。-Huffman-based compression and decompression technology. Arbitrary files on your computer and keep reading it to read from the cache 0, 1 code
bp1
- BP算法的C语言实现--三层神经元网络.普通BP算法和改进型BP[带缓冲项]算法-BP algorithm C-language implementation- three-layer neural network. Ordinary BP algorithm and the improved BP [with a cache entry] algorithm
cache
- 告诉缓存问题,算法设计中最经典也是最重要的问题-Told cache problem, the most classical algorithm design is the most important issue
svm4
- -s svm类型:SVM设置类型(默认0) 0 -- C-SVC 1 --v-SVC 2 – 一类SVM 3 -- e -SVR 4 -- v-SVR -t 核函数类型:核函数设置类型(默认2) 0 – 线性:u v 1 – 多项式:(r*u v + coef0)^degree 2 – RBF函数:exp(-r|u-v|^2) 3 –sigmoid:tanh(r*u v + coef0) -d degree
primegen-0.97.tar
- This program is a Prime number generator. It generates prime numbers very fast. it uses many algorithms to speed up things and uses cache.
tangyouhua_0738200224
- 仿真螺旋交织器系统。要求将得到的整数序列放置在三个工作空间中并输出值。观察交织后数值的可视化变化规律。螺旋交织器模块参数:螺旋排列列数3;组的大小2;螺旋排列的跳步1;初始条件0。螺旋解交织器参数设置同螺旋交织器。斜坡函数模块参数:斜率1;开始时间0;初始输出1;矢量参数一维。缓存器参数:输出缓存长度6;缓存交叠0;初始条件0。仿真系统中的时延参数为7。-Simulation of helical interleaver system. Requirements will be placed i
Cae
- 存储队列Cache访问性能优化设计Cache memory access performance optimization design of the q-Cache memory access performance optimization design of the queue
LRU-Cache
- 设计和实现一个数据结构最近最少使用(LRU)缓存。它应该支持以下操作:获取和设置。 得到(关键)得到的价值(永远是积极的)关键如果键存在于缓存中,否则返回1。 集(关键字,值)——设置或插入的值如果不是已经存在的关键。当缓存达到容量,应该最近最少使用项失效前插入一个新项。-Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following op