資源簡介
數據結構 課程設計 多種排序算法 有界面
數據結構 課程設計 多種排序算法 有界面
數據結構 課程設計 多種排序算法 有界面
數據結構 課程設計 多種排序算法 有界面
數據結構 課程設計 多種排序算法 有界面

代碼片段和文件信息
//?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個文件信息
評論
共有 條評論