• 大小: 1.81MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-20
  • 语言: 其他
  • 标签: 存储管理  LRU  

资源简介

操作系统存储管理LRU 同学做的 很强的~~

资源截图

代码片段和文件信息

// LRU.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “LRU.h“
#include “LRUDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CLRUApp

BEGIN_MESSAGE_MAP(CLRUApp CWinApp)
//{{AFX_MSG_MAP(CLRUApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CLRUApp construction

CLRUApp::CLRUApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CLRUApp object

CLRUApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CLRUApp initialization

BOOL CLRUApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CLRUDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     114791  2008-10-15 15:46  LRU\Debug\LRU.exe

     文件     216640  2008-10-15 15:46  LRU\Debug\LRU.ilk

     文件      14501  2008-10-15 09:42  LRU\Debug\LRU.obj

     文件    5505248  2008-10-15 09:22  LRU\Debug\LRU.pch

     文件     402432  2008-10-15 15:46  LRU\Debug\LRU.pdb

     文件       3428  2008-10-15 15:38  LRU\Debug\LRU.res

     文件      43441  2008-10-15 15:46  LRU\Debug\LRUDlg.obj

     文件     105727  2008-10-15 09:22  LRU\Debug\StdAfx.obj

     文件     214016  2008-10-15 15:46  LRU\Debug\vc60.idb

     文件     372736  2008-10-15 15:46  LRU\Debug\vc60.pdb

     文件      37576  2008-10-15 15:38  LRU\LRU.APS

     文件       2007  2008-10-15 15:46  LRU\LRU.clw

     文件       2021  2008-10-15 09:22  LRU\LRU.cpp

     文件       4105  2008-10-15 09:22  LRU\LRU.dsp

     文件        531  2008-10-15 09:35  LRU\LRU.dsw

     文件       1291  2008-10-15 09:22  LRU\LRU.h

     文件      66560  2008-10-15 15:47  LRU\LRU.ncb

     文件      53760  2008-10-15 15:47  LRU\LRU.opt

     文件        959  2008-10-15 15:46  LRU\LRU.plg

     文件       7023  2008-10-15 15:38  LRU\LRU.rc

     文件       9896  2008-10-15 15:46  LRU\LRUDlg.cpp

     文件       1855  2008-10-15 09:42  LRU\LRUDlg.h

     文件       3525  2008-10-15 09:22  LRU\ReadMe.txt

     文件       1078  2008-10-15 09:22  LRU\res\LRU.ico

     文件        395  2008-10-15 09:22  LRU\res\LRU.rc2

     文件       1279  2008-10-15 09:42  LRU\Resource.h

     文件        205  2008-10-15 09:22  LRU\StdAfx.cpp

     文件       1054  2008-10-15 09:22  LRU\StdAfx.h

     目录          0  2009-05-13 19:52  LRU\Debug

     目录          0  2009-05-13 19:52  LRU\res

............此处省略4个文件信息

评论

共有 条评论