登录
首页 » Visual C++ » Segment_Page_SMS

Segment_Page_SMS

于 2021-01-08 发布 文件大小:12267KB
0 439
下载积分: 1 下载次数: 15

代码说明:

  操作系统的课程设计,段页式存储管理,visual studio 2008,mfc(Operating systems curriculum design, storage management section page, visual studio 2008, mfc)

文件列表:

Segment_Page_SMS
................\context.cpp,277,2010-12-27
................\context.h,1366,2011-01-02
................\Debug
................\.....\BuildLog.htm,6214,2011-01-05
................\.....\context.obj,4114,2011-01-05
................\.....\DlgAddSegment.obj,33200,2011-01-05
................\.....\DlgApplyProgress.obj,48246,2011-01-05
................\.....\DlgCallback.obj,40442,2011-01-05
................\.....\DlgShowPageTable.obj,32223,2011-01-05
................\.....\DlgShowSegTable.obj,25980,2011-01-05
................\.....\DlgState.obj,24970,2011-01-05
................\.....\DlgTranslate.obj,36373,2011-01-05
................\.....\mt.dep,65,2011-01-05
................\.....\Segment_Page_SMS.exe,142336,2011-01-05
................\.....\Segment_Page_SMS.exe.embed.manifest,920,2011-01-05
................\.....\Segment_Page_SMS.exe.embed.manifest.res,984,2011-01-05
................\.....\Segment_Page_SMS.exe.intermediate.manifest,861,2011-01-05
................\.....\Segment_Page_SMS.ilk,1040548,2011-01-05
................\.....\Segment_Page_SMS.obj,24714,2011-01-05
................\.....\Segment_Page_SMS.pch,25296896,2011-01-05
................\.....\Segment_Page_SMS.pdb,3558400,2011-01-05
................\.....\Segment_Page_SMS.res,26184,2011-01-05
................\.....\Segment_Page_SMSDlg.obj,76221,2011-01-05
................\.....\stdafx.obj,465447,2011-01-05
................\.....\vc90.idb,969728,2011-01-05
................\.....\vc90.pdb,2019328,2011-01-05
................\DlgAddSegment.cpp,1606,2010-12-30
................\DlgAddSegment.h,519,2010-12-30
................\DlgApplyProgress.cpp,4913,2011-01-05
................\DlgApplyProgress.h,1075,2010-12-26
................\DlgCallback.cpp,3604,2011-01-05
................\DlgCallback.h,755,2011-01-05
................\DlgShowPageTable.cpp,1563,2010-12-26
................\DlgShowPageTable.h,608,2010-12-25
................\DlgShowSegTable.cpp,1162,2011-01-02
................\DlgShowSegTable.h,512,2010-12-25
................\DlgState.cpp,911,2010-12-25
................\DlgState.h,464,2010-12-25
................\DlgTranslate.cpp,2412,2011-01-05
................\DlgTranslate.h,641,2010-12-26
................\ReadMe.txt,3053,2010-12-25
................\res

................\...\Segment_Page_SMS.rc2,372,2010-12-25
................\resource.h,2337,2010-12-30
................\Segment_Page_SMS.aps,65652,2011-01-05
................\Segment_Page_SMS.cpp,1777,2010-12-25
................\Segment_Page_SMS.h,501,2010-12-25
................\Segment_Page_SMS.ncb,18590720,2011-01-05
................\Segment_Page_SMS.rc,11206,2011-01-05
................\Segment_Page_SMS.sln,897,2010-12-25
................\Segment_Page_SMS.vcproj,6648,2010-12-30
................\Segment_Page_SMS.vcproj.zj-PC.zj.user,1407,2011-01-05
................\Segment_Page_SMSDlg.cpp,17226,2011-01-05
................\Segment_Page_SMSDlg.h,1773,2010-12-30
................\stdafx.cpp,147,2010-12-25
................\stdafx.h,1780,2010-12-25
................\targetver.h,1030,2010-12-25
绘图1.vsd,60928,2010-12-27
绘图2.vsd,53760,2010-12-27
绘图3.vsd,56832,2010-12-29
绘图4.vsd,54272,2010-12-29
绘图5.vsd,50688,2010-12-29
设计报告.doc,889856,2010-12-29

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • process_attemper
    1、 :编写并调试一个模拟的进程调度程序,采用“最高优先数优先”调度算法对进程进行调度。 “最高优先数优先调度算法的基本思想是把CPU分配给就绪队列中优先数最高的进程。尝试静态优先数与动态优先数两种方法: a) 静态优先数是指优先数在整个进程运行期间不再改变。优先数可以在数据输入时指定,也可以根据到达顺序、运行时间确定。 b) 动态优先数是指进程的优先数在创建进程时可以给定一个初始值,并且可以按一定原则修改优先数。例如进程获得一次CPU后就将其优先数减少1。或者进程等待的时间超过某一时限时增加其优先数的值。 2、 编写并调试一个模拟的进程调度程序,模拟实现多级反馈队列调度算法。 3、 编写并调试一个模拟的进程调度程序,模拟实现最低松弛度优先算法。 4、 程序与报告要求: a) 对上述要求1、2、3,至少要完成一项,鼓励尝试多种算法。 b) 输出结果要尽量详细清晰,能够反映调度后队列变化,PCB内部变化。 c) 可以选择在Windows或Linux环境下编写、运行程序 d) 鼓励使用不同的开发工具在不同平台环境上进行开发比较。 e) 在实验报告中,一方面可以对实验结果进行分析,一方面可以对各种算法进行比较,分析它们的优劣,说明各种算法适用于哪些情况下的调度。 (1 : Prepare a simulation and debugging process scheduling procedures, "Priority number of the highest priority" to the process of scheduling algorithms for scheduling. "Highest priority priority scheduling algorithm for the basic idea is to place the CPU allocated to the priority queue highest process. Taste Examination several static and dynamic priority priority number two methods : a) static priority number is priority number in operation during the entire process will not change. priority number in the designated input data, can be reached under the order, running time determine. b) dynamic priority number refers to several priorities for the process of the creation process can be given an initial value, and according to the principle of amending certain priority number.)
    2007-07-04 12:57:51下载
    积分:1
  • 用login二级目录的文件
    这个程序是模拟采用二级目录结构的磁盘文件系统中的文件操作,它可以实现对文件的一些基本管理,如:读、写、删除文件等。通过这个程序可掌握文件子系统的原理,加深对二级目录结构的文件系统中用户管理、文件管理、目录管理的理解,并用程序实现对文件子系统的模拟。(the procedure is simulated using two disk directory structure of the file system file manipulation, it can be achieved on some basic document management, such as : read, write, delete files. Through this procedure can grasp the principle document subsystems to enhance the structure of the two file system user management, document management, directory management, understanding, and the procedures to achieve the right documents subsystem simulation.)
    2020-12-12 20:29:16下载
    积分:1
  • OS
    说明:  包含操作系统全部试验以及实验报告,稍微修改下就可以了(Contains the operating system all the tests and lab reports, a slight modification can be the next)
    2010-05-26 11:29:03下载
    积分:1
  • OS
    说明:  这是操作系统中调度算法中时间片轮转算法完成后的实践报告(This is the operating system scheduling algorithm in the time slice cycle after the completion of practice report)
    2010-09-06 10:48:24下载
    积分:1
  • system
    操作系统作业源代码,方便学习操作系统课程的同学使用 (this is the codes for students who learn computer system.)
    2013-12-30 21:07:39下载
    积分:1
  • ComputerSystems--AProgrammersPerspective
    从程序员的角度看计算机操作系统~ 很不错的书 大家都加油了(Computer Systems--A Programmer s Perspective)
    2010-09-17 21:30:36下载
    积分:1
  • caozuoxitongshiyanwendang
    操作系统的实验文档 包含设计与说明 带源码例子(Document contains the operating system design and description of experimental)
    2010-11-17 11:26:54下载
    积分:1
  • QiQiWeather
    说明:  手机天气预报系统,可以更改城市名字和显示天气,手机symbian 下使用(Mobile weather forecasting system, you can change the city names and display the weather, the use of mobile phones symbian)
    2008-09-28 15:48:33下载
    积分:1
  • ddos
    非常强大的DDOS嘎嘎,速度下载把,版权帝们,(Very strong DDOS quack)
    2014-01-30 19:18:33下载
    积分:1
  • dos
    一个虚拟DOS操作界面的小系统,一共有9条命令,可以在里面增加命令实现更多功能。(A virtual DOS interface small system, a total of 9 orders, which increased in order to achieve more.)
    2007-12-16 16:15:20下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载