搜索资源列表
歌德巴赫猜想
- 验证:2000以内的正偶数都能够分解为两个素数之和(即验证歌德巴赫猜想对2000以内的正偶数成立)。 *问题分析与算法设计 为了验证歌德巴赫猜想对2000以内的正偶数都是成立的,要将整数分解为两部分,然后判断出分解出的两个整数是否均为素数。若是,则满足题意;否则重新进行分解和判断。 程序中对判断是否为素数的算法进行了改进,对整数判断“用从2开始到该整数的一半”改为“2开始到该整数的平方根”。原因何在请自行分析。 -certification : 2000 within the
dsp_C_code6
- 数字信号处理的各种算法的c语言代码实现。 格式是pdg的。-digital signal processing algorithms in C language code to achieve. The format is pdg.
page.change
- 功能介绍: l 输入进程P总共有的页面数,l 并输入系统已经在内存中分配的页面数。当所分配的页面数大于进程P的页面数时,l 则不l 需要进行页面调度工作。 l 由进程P的页面数目,l 程序随机生成一些访问内存的页面号,l 为简化程序,l 这些页面号的数目同l 进程P的进程数目一致(这个缺陷也有待改进)。 l 由用户选择FIFO算法还是LRU算法对进程P的页面访问内存分配的页面进行分配,l 并输出具体的页面访问过程。 原理介绍: 请求页式管理中的置换算法:置换算法在内存中没有空
Graph_Algorithms_code
- book: Algorithms in C++, Part 5 (Graph Algorithms) code-book : Algorithms in C, Part 5 (Graph Algorithms) code
AlgorithmsinC_Parts14
- Algorithms in C, Parts 1-4 (Fundamental Algorithms, Data Structures, Sorting, Searching) code-Algorithms in C, Parts 1-4 (Fundamental Algorithms. Data Structures, Sorting and Searching) code
AlgorithmsinC++Part5
- Algorithms in C++, Part 5 (Graph Algorithms) code-Algorithms in C, Part 5 (Graph Algorithms) code
AlgorithmsinC++Parts1-4
- Algorithms in C++, Parts 1-4 (Fundamental Algorithms, Data Structures, Sorting, Searching) code-Algorithms in C, Parts 1-4 (Fundamental Algorithms. Data Structures, Sorting and Searching) code
AlgorithmsinJava_Part5(GraphAlgorithms)
- Algorithms in Java, Part 5 (Graph Algorithms) code
AlgorithmsinC_Part5(GraphAlgorithms)code
- Algorithms in C, Part 5 (Graph Algorithms) code
Algorithms-in-C++-Source-Code-
- 包含大量的C++源码,从简单到复杂,一步一步,保证可以在1-2个月成为C++高手@
FIFO.先进先出调度算法(FIFO)处理缺页中断
- 关于操作系统:先进先出调度算法(FIFO)处理缺页中断,On the operating system: FIFO scheduling algorithms (FIFO) handling page fault
MPI_QuickSort
- MIP并行计算实现快速排序算法。在本篇中,我们首先对快速排序算法进行描述和实现,并在此基础上分析此算法的并行性,确定并行编程模式,最后给出该算法的MPI实现。-MIP fast parallel sorting algorithms. In this, we first describe a fast sorting algorithm and implementation, and on this basis of parallelism of this algorithm to determ
LLFScheduling
- 最小松弛度优先算法,属于实时调度算法,又叫最小欲度(空闲时间)优先算法,在这里,给出了其C++的代码实现。-Minimum slack priority algorithm, belonging to real-time scheduling algorithm, also known as For the smallest degrees (idle time) priority algorithms, in here, given its C++ code to achieve.
StorageLibrary3.56_FullSource_Delphi2010
- 【最新for delphi 2010全源码版本】 应用程序设置管理是任何应用程序和基础的重要组成部分。通常TIniFile和TRegistry类用于这一目的。Storage Library为应用程序设置管理的新途径。Storage Library是为应用程序设置工作,使组件的集合。Storage Library的概念是非常优雅和简单的: *TrsStorage -主要含有类似的内存结构树中的所有数据 *一些TrsStorageData控件与ini,XML文件,注册表或TS
random_walker_matlab_code
- The random walker algorithm was introduced in the paper: Leo Grady and Gareth Funka-Lea, "Multi-Label Image Segmentation for Medical Applications Based on Graph-Theoretic Electrical Potentials", in Proceedings of the 8th ECCV04, Workshop on Compute
cz
- 用VB编的作业调度算法 使用了FCFS和SJF算法-VB series with the job scheduling algorithm uses the FCFS and SJF algorithm
Java_Algorithm
- JAVA数值计算算法集随书源码,挺有用的-JAVA numerical algorithms with the source book, quite used
DesignandImplementationofJobschedulingsimulationpr
- 先来先服务(FCFS)、短者优先(SJF)、高优先权优先(FPF)是操作系统作业调度的三种基本调度算法。本文用程序模拟这三种调度算法的过程。通过对各个进程在调度过程中参数(开始时间、完成时间、平均周转时间和平均带权时间等)的变化的记录,加深对三种调度过程的认识。-First-come, first-served (FCFS), short-preferred (SJF), a high priority priority (FPF) is the operating system, job sc
CPU_schedule_simulation
- CPU scheduling algorithm simulation project implements FCFS , SJF , RR algorithms
Algorithms-in-C-Parts-1-4
- 算法:C语言实现(第1~4部分)书本上的示例源码实现,但是不包含课后习题的源码,课后习题的源码,找不到啊,找不到-Algorithms in C