CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 先进先出

搜索资源列表

  1. process

    0下载:
  2. window系统下模拟进程调度。。先进先出,优先级调度-window system simulation process scheduling. . FIFO, priority scheduling, and so on. . .
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-16
    • 文件大小:3564
    • 提供者:su
  1. FIFO

    0下载:
  2. 先进先出算法编程,控制台程序,操作系统上面的算法-FIFO algorithm programming, console applications, operating systems, the above algorithm
  3. 所属分类:Console

    • 发布日期:2017-11-09
    • 文件大小:860346
    • 提供者:东卓
  1. Queue

    0下载:
  2. 数据结构中的队列,可以实现先进先出的的功能-A queue data structure, the function can be realized FIFO
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:318240
    • 提供者:
  1. lock-free-wait-free-circularfifo

    0下载:
  2. lock-free, wait-free 先进先出队列,用于多线程编程中-lock-free, wait-free FIFO queue for multithreaded programming
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:525529
    • 提供者:dongkun
  1. os_page

    0下载:
  2. 页面置换算法。实现最佳(Optimal)置换算法、先进先出(FIFO)置换算法、最近最久未使用(LRU)置换算法、简单Clock置换算法-Page replacement algorithm. Optimal (Optimal) replacement algorithm, FIFO (FIFO) replacement algorithm, the most recent time used (LRU) replacement algorithm, a simple replacement a
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:316066
    • 提供者:春春
  1. abc

    0下载:
  2. 最近最久未使用算法 先进先出算法 最佳置换算法-The most recent time algorithm for optimal use of algorithms FIFO replacement algorithm
  3. 所属分类:CSharp

    • 发布日期:2017-04-14
    • 文件大小:3616
    • 提供者:赵子龙
  1. push

    0下载:
  2. 完整地描述了数据结构中的进栈过程:在堆栈中,用户只能在指定的一端插入和删除元素,因此具有后进先出(LIFO)的特性;在队列中,用户只能在一端插入元素而在另一端删除元素,因此呈现先进先出(FIFO)的特性。从数据结构角度看,它们都是线性结构。 -A complete descr iption of the data structure into the stack process: in the stack, users can insert and delete elements at on
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:554
    • 提供者:cindy
  1. ChangePage

    0下载:
  2. 操作系统-页面置换算法-最佳页面置换、先进先出、最近最久未使用,课程设计-Operating system- page replacement algorithm- Optimal, FIFO, LRU, course design
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2026
    • 提供者:HeddaZhu
  1. ooo

    0下载:
  2. 1、 模拟分页式存储管理中硬件的地址转换和产生缺页中断。 2、 用先进先出页面调度算法处理缺页中断。 -1, analog paging storage management hardware address translation and generate a page fault. 2, with FIFO scheduling algorithm processing page page fault.
  3. 所属分类:CSharp

    • 发布日期:2017-04-11
    • 文件大小:1074
    • 提供者:lgc
  1. VHDL

    0下载:
  2. 四选一电路,分钟计数器,三八译码器,先进先出-Four elected a circuit, VHDL procedures VHDL procedures VHDL procedures VHDL program
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:18629
    • 提供者:sun
  1. otp

    0下载:
  2. 几种页面置换算法如先进先出,最佳置换,最近最久未使用算法-Several page replacement algorithms such as FIFO, the optimal replacement, the least recently used algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:293635
    • 提供者:小文
  1. 3

    0下载:
  2. C语言设计一个先进先出算法程序实现页面置换的模拟.-C language design a FIFO page replacement algorithm simulation program
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-01
    • 文件大小:14250
    • 提供者:likai
  1. generic_fifos_latest.tar

    0下载:
  2. 普通的先进先出系统编程,很好用,很实用,针对FIFO-Ordinary FIFO system programming, useful, very useful
  3. 所属分类:Button control

    • 发布日期:2017-04-17
    • 文件大小:19988
    • 提供者:
  1. Three-kinds-of-replacement-algorithm

    0下载:
  2. 本代码有三种操作系统的置换算法,分别是fifo(先进先出算法),lru(最近最少使用算法),opt(最佳置换算法),可根据需要进行选择,并计算出命中次数、缺页率和命中率等。-The code has three operating system replacement algorithm, namely fifo (first in first out method), lru (least recently used algorithm), opt (optimal replacement a
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-29
    • 文件大小:204451
    • 提供者:小青菜
  1. line

    0下载:
  2. 队列是一种先进先出的线性表,它只允许在表的一端进行插入,而在另一端进行删除元素。用链表表示的队列简称链队列。一个链队列需要两个分别指向队头和队尾的指针。顺序队列除了用一组地址连续的存储单元依次存放从队头到队尾的元素外,还需要两个指针front和rear分别指示队列头元素和队列尾元素的位置。 定义顺序队列类型,实现队列的所有基本操作。 定义链队列类型,实现队列的所有基本操作。 -FIFO queue is a linear form, it only allows to insert
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:17842
    • 提供者:李丽
  1. FIFO103

    0下载:
  2. 大学生计算机操作系统课程设计,实现页面置换,利用fifo(先进先出)算法-Students of computer operating systems curriculum design, the realization of the page replacement, the use of fifo (FIFO) algorithm
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-05-01
    • 文件大小:7947
    • 提供者:lu1148628
  1. algorithmIivl

    0下载:
  2. 先进先出置换页面算法的程序实现 进程执行程序时要访问的,不错很好-Fifo page replacement algorithm of procedures to achieve process execution to access, good is very good
  3. 所属分类:Dialog_Window

    • 发布日期:2017-12-15
    • 文件大小:5120
    • 提供者:BK&0666
  1. KBIKV

    0下载:
  2. 这就是fifo算法,中文就是先进先出算法,,大家可以看看,不过很简单,,有部分实现的并不太好-This is the fifo algorithm, is the first in first out algorithm, in Chinese, you can see, but is very simple,, have a partial implementation is not so good
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-17
    • 文件大小:83968
    • 提供者:liweral
  1. FIFO

    0下载:
  2. 提供的是页面置换算法中最简单的先进先出策略的java代码实现(The Java code implementation of the simplest FIFO policy in the page replacement algorithm is provided)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-31
    • 文件大小:1024
    • 提供者:Bruce Shen
  1. 新建文件夹

    0下载:
  2. 数据结构的选择 考虑到病人排队候诊的过程中具有先排队就诊的特诊,与队列的先进先出的特 征相吻合,因此可以考虑采用队列线性表,其中,队列的存储结构有循环顺序队列 和单链队列。(The choice of data structure Considering patients waiting in line with first line treatment in the process of the diagnosis, and the first in first out queue consi
  3. 所属分类:其他

    • 发布日期:2017-12-29
    • 文件大小:141312
    • 提供者:IU521
« 1 2 3 4 56 »
搜珍网 www.dssz.com