• 大小: 322KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-05
  • 语言: 其他
  • 标签: 排序  数据结构  

资源简介

多种排序演算及原代码

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “paixu.h“
#include “paixuDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CPaixuApp

BEGIN_MESSAGE_MAP(CPaixuApp CWinApp)
//{{AFX_MSG_MAP(CPaixuApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CPaixuApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CPaixuApp object

CPaixuApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CPaixuApp initialization

BOOL CPaixuApp::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

CPaixuDlg 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;
}

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

     文件    1640448  2006-08-07 16:49  文档.doc

     目录          0  2006-12-29 09:54  源程序

     文件     212214  2006-01-05 02:14  源程序\2.bmp

     文件     236400  2006-12-29 09:52  源程序\paixu.aps

     文件       2177  2006-12-29 09:54  源程序\paixu.clw

     文件       2049  2006-01-03 02:07  源程序\paixu.cpp

     文件       4396  2006-01-05 02:17  源程序\paixu.dsp

     文件        533  2006-01-03 02:07  源程序\paixu.dsw

     文件       1313  2006-01-03 02:07  源程序\paixu.h

     文件      82944  2006-12-29 09:54  源程序\paixu.ncb

     文件      49664  2006-12-29 09:54  源程序\paixu.opt

     文件       1746  2006-12-29 09:52  源程序\paixu.plg

     文件       7324  2006-01-05 21:47  源程序\paixu.rc

     文件      25008  2006-01-06 01:38  源程序\paixuDlg.cpp

     文件       2586  2006-01-05 03:58  源程序\paixuDlg.h

     文件       3561  2006-01-03 02:07  源程序\ReadMe.txt

     目录          0  2006-07-05 11:00  源程序\res

     文件       1078  2006-01-05 02:10  源程序\res\icon1.ico

     文件       1078  2006-01-03 02:07  源程序\res\paixu.ico

     文件        397  2006-01-03 02:07  源程序\res\paixu.rc2

     文件      30395  2005-11-12 00:08  源程序\res\U348P6T64D15278F1323DT20051111203154.jpg

     文件       1691  2006-01-05 02:14  源程序\resource.h

     文件        207  2006-01-03 02:07  源程序\StdAfx.cpp

     文件       1054  2006-01-03 02:07  源程序\StdAfx.h

----------- ---------  ---------- -----  ----

              2308263                    24


评论

共有 条评论