资源简介
数据结构 课程设计 多种排序算法 有界面
数据结构 课程设计 多种排序算法 有界面
数据结构 课程设计 多种排序算法 有界面
数据结构 课程设计 多种排序算法 有界面
数据结构 课程设计 多种排序算法 有界面
代码片段和文件信息
// 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个文件信息
相关资源
- 密码学课程设计
- QT学生选课与成绩管理系统,含有学生
- 王道数据结构的所有选择题
- [BUPT]计算机网络课程设计 - DNS中继服
- 数据结构(陈惠南主编第二版)习题
- 数电四路抢答器课程设计报告。doc
- 综合布线课程设计 - 副本.docx
- Multism交通灯定时系统课设仿真(可直
- 网络工程设计--中小型企业网络设计与
- CA6140法兰盘课程设计说明书+cad图.zi
- EDA课程设计-蓝牙耳机电路
- Introduction to Algorithms Third Edition算法导
- 严蔚敏数据结构ppt
- 图书销售管理系统
- 模电万用表仿真课程设计
- DSP课程设计--语音信号的FIR滤波器处理
- 数据结构严蔚敏pdf电子版本
- 数据挖掘课程设计30篇
- 51单片机课程设计及报告
- 数电课程设计--交通灯原理及PCB
- 软件工程课程设计.doc
- 自动控制原理课程设计角度随动系统
- 数据结构各章习题与答案严蔚敏版—
- 算法与数据结构学习指导与习题解析
- LED点阵广告牌课程设计C51单片机含报
- 彩灯控制器 课程设计
- VFP数据库银行管理系统
- 东南大学 操作系统 课程设计 实验报
- 安徽大学数据结构课程PPT
- FPGA课程设计-硬件乐曲演奏Verilog HDL
评论
共有 条评论