资源简介

数据结构 课程设计 多种排序算法 有界面 数据结构 课程设计 多种排序算法 有界面 数据结构 课程设计 多种排序算法 有界面 数据结构 课程设计 多种排序算法 有界面 数据结构 课程设计 多种排序算法 有界面

资源截图

代码片段和文件信息

// MainFrm.cpp : implementation of the CMainframe class
//

#include “stdafx.h“
#include “数据结构课程设计_排序.h“

#include “MainFrm.h“

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

/////////////////////////////////////////////////////////////////////////////
// CMainframe

IMPLEMENT_DYNCREATE(CMainframe CframeWnd)

BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

static UINT indicators[] =
{
ID_SEPARATOR           // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};

/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction

CMainframe::CMainframe()
{
// TODO: add member initialization code here

}

CMainframe::~CMainframe()
{
}

int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;

if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1;      // fail to create
}

if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
  sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1;      // fail to create
}

// TODO: Delete these three lines if you don‘t want the toolbar to
//  be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);

return 0;
}

BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs

return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics

#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}

void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2010-06-07 22:58  数据结构课程设计基本定稿\
     目录           0  2010-06-07 22:58  数据结构课程设计基本定稿\数据结构课程设计_排序\
     目录           0  2010-06-07 22:58  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\
     文件       18690  2010-05-27 23:18  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\MainFrm.obj
     文件       18293  2010-06-02 15:28  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\Sort.obj
     文件      105541  2010-05-27 23:18  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\StdAfx.obj
     文件      222208  2010-06-03 00:10  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\vc60.idb
     文件      380928  2010-06-02 15:28  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\vc60.pdb
     文件         558  2010-05-29 10:48  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\冒泡排序性能分析.txt
     文件         594  2010-05-29 09:56  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\堆排序性能分析.txt
     文件         550  2010-05-29 10:08  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\归并排序性能分析.txt
     文件         883  2010-05-29 10:29  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\快速排序性能分析.txt
     文件         839  2010-05-29 09:47  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\插入排序性能分析.txt
     文件     2191444  2010-06-02 15:28  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\数据结构课程设计_排序.exe
     文件     2724284  2010-06-02 15:28  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\数据结构课程设计_排序.ilk
     文件       21715  2010-05-29 12:02  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\数据结构课程设计_排序.obj
     文件     5456192  2010-05-27 23:18  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\数据结构课程设计_排序.pch
     文件     4252672  2010-06-02 15:28  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\数据结构课程设计_排序.pdb
     文件       13616  2010-05-29 10:34  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\数据结构课程设计_排序.res
     文件       13556  2010-05-27 23:18  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\数据结构课程设计_排序Doc.obj
     文件       38276  2010-06-02 15:28  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\数据结构课程设计_排序View.obj
     文件         881  2010-05-29 10:47  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\综合分析.txt
     文件         429  2010-05-29 09:33  数据结构课程设计基本定稿\数据结构课程设计_排序\Debug\选择排序性能分析.txt
     文件        2522  2010-05-27 23:15  数据结构课程设计基本定稿\数据结构课程设计_排序\MainFrm.cpp
     文件        1581  2010-05-27 23:15  数据结构课程设计基本定稿\数据结构课程设计_排序\MainFrm.h
     文件        4566  2010-05-27 23:15  数据结构课程设计基本定稿\数据结构课程设计_排序\ReadMe.txt
     目录           0  2010-06-07 22:58  数据结构课程设计基本定稿\数据结构课程设计_排序\res\
     文件        1313  2010-05-29 10:34  数据结构课程设计基本定稿\数据结构课程设计_排序\resource.h
     文件        1078  2010-05-27 23:54  数据结构课程设计基本定稿\数据结构课程设计_排序\res\Toolbar.bmp
     文件        1078  2010-05-27 23:21  数据结构课程设计基本定稿\数据结构课程设计_排序\res\数据结构课程设计_排序.ico
     文件         413  2010-05-27 23:15  数据结构课程设计基本定稿\数据结构课程设计_排序\res\数据结构课程设计_排序.rc2
............此处省略62个文件信息

评论

共有 条评论