Welcome![Sign In][Sign Up]
Location:
Search - 页面

Search list

[Internet-Network生成静态页面服务

Description: 生成静态页面服务+windows+service.rar
Platform: | Size: 421397 | Author: pp1883 | Hits:

[Web Server解析url或者本地文件html页面类

Description: 解析url或者本地文件html页面类。如可以通过如下的方式获取html页面的元素: // Create DOM from URL or file $html = file_get_html('http://www.google.com/'); // Find all images foreach($html->find('img') as $element) echo $element->src . ''; // Find all links foreach($html->find('a') as $element) echo $element->href . ''; 更多的功能请见附带的文档和例子
Platform: | Size: 40705 | Author: daqingzao | Hits:

[Other操作系统页面置换算法模拟

Description: 一个操作系统页面置换算法模拟程序源代码希望能够帮到你 。。。
Platform: | Size: 1939104 | Author: zhong1w2 | Hits:

[SourceCode定时器控制页面切换

Description: 定时器控制页面切换
Platform: | Size: 111498 | Author: maodeyuan2008@163.com | Hits:

[DirextXdirectdraw页面切换演示程序

Description: directdraw页面切换演示程序
Platform: | Size: 1528501 | Author: zhangchong20058@126.com | Hits:

[SourceCode操作系统页面置换算法

Description: 操作系统实验中的页面置换算法的准确实现
Platform: | Size: 1782 | Author: 691533844@qq.com | Hits:

[Other页面置换算法三种)

Description: 掌握内存管理的页面淘汰算法 输入可用内存页面数和一个作业访问逻辑页号的序列,分别给存FIFO、LRU算法的缺页中断率(注:算法原理实现,不要求实际页面)。-master memory management algorithm pages out of the importation of a few pages available memory and a logic operation visit pages of the sequence, kept FIFO, the LRU algorithm missing pages interrupt rate (Note : The principles of achieving algorithm that does not require the actual pages).
Platform: | Size: 6144 | Author: 施委 | Hits:

[OS DevelopWIN页面置换

Description: 用VC开发的模拟操作系统的页面置换-VC simulation of the operating system developed by the replacement pages
Platform: | Size: 2027520 | Author: | Hits:

[Documents虚拟存储管理器的页面调度算法实现

Description: 虚拟存储管理器的页面调度算法实现-Virtual Storage Manager pages Scheduling Algorithm
Platform: | Size: 6144 | Author: 无痕 | Hits:

[Data structs页面置换算法fiof_lru

Description: fifo和lru页面置换算法-fifo and LRU algorithm replacement pages
Platform: | Size: 238592 | Author: 夏雨 | Hits:

[OS Develop页面置换算法222

Description: 页面置换算法的LRU和FCFS。自己写的。-replacement pages of LRU algorithm and FCFS. Wrote it myself.
Platform: | Size: 1024 | Author: 姚东 | Hits:

[OS program页面置换算法(C语言编写)

Description: c语言实现的页面调度算法,用三种算法实现调度1.先进先出2.OPT3.LRU 2.页面序列从指定的文本文件(TXT文件)中取出3.输出:第一行:每次淘汰的页面号 第二行:显示缺页的总次数(上机已经运行通过!!)-pages scheduling algorithm, a three-Scheduling Algorithm 1. FIFO 2.OPT3.LRU 2. Pages from the designated sequence of text files (TXT) out of three. Output : the first line : each of the pages out of the second line : show na the total number of pages (on the plane had run through! !)
Platform: | Size: 2048 | Author: zbing0203 | Hits:

[Other页面调度

Description: 操作系统中的页面调度(先进进出,最近很少使用算法,最佳算法等等,操作系统中比较重要的算法)-operating system pages Scheduling (advanced access, recently rarely used algorithm, the best algorithms and so on the operating system more important algorithm)
Platform: | Size: 1024 | Author: dzg | Hits:

[CSharp页面置换算法(FIFO和LRU)

Description: 模拟操作系统虚拟存储中的页面置换算法采用FIFO算法和LRU算法-simulation operating system virtual memory pages the algorithm used FIFO replacement algorithm and LRU algorithm
Platform: | Size: 248832 | Author: 杨鼎新 | Hits:

[Other页面置换

Description: 请求页式存储管理方案// 页面淘汰算法采用 FIFO页面淘汰算法,// 并且在淘汰一页时,只将该页在页表中抹去。// 而不再判断它是否被改写过,也不将它写回到辅-request page-storage management programs// pages out FIFO algorithm out pages algorithm// in an out, only to the page in the page table to erase.// Rather than to judge whether it be redrafted, it was not to return to the Commission
Platform: | Size: 1024 | Author: 王生 | Hits:

[OS Develop页面置换算法的模拟实现和计算命中率

Description: 基本算法思想 OPT:该算法的基本思想是用二维数组page2[40][2] 的第一列存储装入内存的页面,而第二列用作标记位计数器。每当发生缺页时,就从内存中调出一页,首先将内存中的页面一一与要调入内存中的页面之后的页面比较,如果两个页面不相等,则内存中相应的页面的标记位计数器加一,直至到有相等的页面,则该页面的比较停止,再重复以上操作,直至内存中的页面全部比较完。然后找出内存中页面的标记位最大的页面,而该页就是要置换出来的页。 FIFO: 该算法的基本思想是用队列queue存储内存中的页面,队列的特点是先进先出,与该算法是一致的,所以每当发生缺页时,就从队头删除一页,即队头指针加一,而从队尾加入缺页,队尾指针加一。 LRU: 该算法的基本思想是用二维数组page2[40][2] 的第一列存储装入内存的页面,而第二列用作标记位计数器。每当使用页面时,该页面的标记位计数器加一。发生缺页时,就从内存中页面标记最小的一页,调出该页,并且该页后面的页面在数组中的位置前移,而缺页就放在数组后面。-basic algorithm thinking OPT : The basic idea of the algorithm is a two-dimensional array page2 [40] [2], the first storage pages loaded into memory, and the second for the markers out counter. Whenever there are missing pages, from memory a redeployment, the first memory pages on January 1 and transferred to the memory page after page, two pages, if not equal, then the corresponding memory pages marked increase a bit counter, until the equivalent of a page, the page more stop and then to repeat the operation, until the memory of all the pages compared End. Then find memory pages marking the largest-page, the page is to the replacement page. FIFO : The basic idea of the algorithm is used queue queue storage memory pages, and the queue is FIFO features, and the algorithm is the same, so whe
Platform: | Size: 26624 | Author: 何泽荣 | Hits:

[OS Develop存储管理--页面置换

Description: 关于模拟操作系统的存储管理页面置换程序,挺好的.-simulation operating system on the storage management pages replacement procedures, Holbrook.
Platform: | Size: 1024 | Author: 若竹 | Hits:

[CSharp先进先出页面算法程序2

Description: 先进先出置换页面算法的程序实现 进程执行程序时要访问的...先进先出置换算法FIFO 最近最少使用置换算法LRU 最近未使用置换算法NUR 工作集. ...例:某进程分配页架数为3,其运行期间页面访问序列:A,B,C,D,A,B,E,A,B,C,D,E,分析其按照OPT算法进行页面置换时的缺... -FIFO replacement pages algorithm program implementation process procedures ... to visit the FIFO replacement algorithm using FIFO recently, at least recently LRU algorithm replacement unused replacement algorithm sets NUR work. Cases ... : a page-allocation process at 3, p. during its operation visit face sequence : A, B, C, D, A, B, E, A, B, C, D, E, in accordance with the analysis of its OPT algorithm replacement of pages missing ...
Platform: | Size: 5120 | Author: asdf | Hits:

[CSharp先进先出页面算法程序

Description: 分别实现最佳置换算法(optimal)、先进先出(FIFO)页面置换算法和最近最久未使用(LRU)置换算法,并给出各算法缺页次数和缺页率。-respectively optimal replacement algorithm (optimal), FIFO (FIFO) page replacement algorithm and the most recent time on the use (LRU) replacement algorithm, the algorithm is given na na page number and page rate.
Platform: | Size: 3072 | Author: asdf | Hits:

[Other systems通用静态页面生成系统(Engineer) v.1

Description: 通用静态页面生成系统(Engineer) v.1-common static page generation system (Engineer) v. 1
Platform: | Size: 280576 | Author: | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net