搜索资源列表
HugeInt_C++
- 将大数看作一个n进制数组,对于目前的32位系统而言n可以取值为2的32次方,即0x10000000, 假如将一个1024位的大数转化成0x10000000进制,它就变成了32位,而每一位的取值范围就不是0-1 或0-9,而是0-0xffffffff。我们正好可以用一个无符号长整数来表示这一数值。所以1024位的大数 就是一个有32个元素的unsigned long数组。而且0x100000000进制的数组排列与2进制流对于计算机 来说,实际上是一回事,但是我们完全可以针对unsi
流函数计算
- 流函数计算.rar
Algorithm_analysis_and_programme_design
- 实用算法分析与程序设计 目录: 第一章基础算法 第二章 顺序统计算法和中位数 第三章 有关数论的算法 第四章 计算几何学 第五章 显式固的基本算法 第六章 隐式图的基本算法 第七章 网络流的算法 第八章 动态程序设计 第九章 题库 一、神秘的大陆 二、迷宫车间 三、Hamilton机器人 四、魔方工具包 五、Tom、Jerry和奶酪 六、债务 七、Sinistra 的城市 八、游戏 九、加法链 十、黑白棋 十一、
express
- 这个源码是用来通过顺序的扫描输入流中的数据,来计算表达式,这个代码在一般的表达式计算,比如:解析器构造中对表达式的处理都是有用的-This source is used to scan through the sequence of input stream data, to calculate the expression, the code in the general expression of the calculation, such as: Parser Construction o
6
- 页面置换算法理解页面置换算法,实现先进先出(FIFO)置换算法和最久未使用(LRU)置换算法。给出任意的输入流,计算置换次数。-Page replacement algorithms understand page replacement algorithm, first in first out (FIFO) replacement algorithm and least-recently used (LRU) replacement algorithm. Any given input st
Pku_ACM_Training
- 北京大学ACM的培训资料还有相关题目的源代码。 里面涉及:组合数学、搜索、动态规划、图论、计算几何以及网络流的相关讲义及习题源代码。-Training materials as well as related topics of the Peking University ACM source code. Which involves: a combination of mathematics, search, dynamic programming, graph theory, compu
LBM_D2Q9
- 计算2d空腔流,能够很好地显示计算结果,很有参考价值-simulation of fluid
用CS结构求解矩阵乘法问题
- 用C/S结构求解矩阵乘法问题。假定有多台电脑互联网中并使用TCP/IP进行通信。我们要使用一个客户和几个服务器求解N×N的矩阵乘法问题。客户通过srvcfg.txt文件所获取所有的服务器程序必要的信息,如服务器的个数,IP地址或主机名。例如,一个“srvcfg.txt”文件的内容为: 3 149.150.167.123 149.150.162.182 149.150.169.250 表示有3个服务器及相应的IP地址。 然后,建立于所有服务的Socket连接和I/O流。客户从c
4zhongyemiandiaodusuanfa
- 基于一个虚拟存储区和内存工作区,设计下述算法并计算访问命中率。 1、最佳淘汰算法(OPT) 2、先进先出的算法(FIFO) 3、最近最久未使用算法(LRU) 4、简单时钟(钟表)算法(CLOCK) 命中率=1-页面失效次数/页地址流(序列)长度 -Based on a virtual memory storage area and work area, the following algorithm design and calculate the h
123
- 网络流算法和最小费用流,用来处理图论问题中的流量计算和流量限制的费用流计算-Network flow algorithm and the minimum cost flow problem in graph theory to deal with the cost of computing and traffic flow restrictions stream computing
bign
- 计算大整数的头文件,支持加减乘除,流,次方,开方,求余,小于,大于,不等于等运算。-Calculation of large integer header files to support the addition and subtraction multiplication and division, flow, power, square root, seeking more than, less than, greater than, not equal to other operatio
maxflow
- 计算网络最大流的代码,c++语言编写,可以使用。-the code is for calculating the max-flow of a network.