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

代码片段和文件信息
// 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个文件信息
相关资源
- FTP课程设计(服务端+客户端)
- 数据结构年终考题范围和答案 耿国华
- 高频电子线路课程设计报告收音机
- 直流稳压电源的课程设计、安装及调
- EDA课程设计_密码锁
- 数据结构 朱战力 习题解答 数据结构
- 单片机课程设计 篮球计分器
- 数据结构课程设计 6 1 彩票系统
- 端口扫描课程设计详细的报告
- 教学计划编制系统
- 步进电机课程设计(个人设计)
- 校园网络规划与设计课程设计
- 大数(链表、数组)实现
- 编译原理课程设计:词法语法编译器
-
simuli
nk 课程设计 qpsk - 武汉理工大学 单片机课程设计 16*16点
- 数据库VFP课程设计
- 分页系统模拟实验 操作系统 课程设
- 自己写的航空订票系统c 版--数据结构
- 数据结构实验魔王语言
- 模拟段页式虚拟存储管理中地址转换
- 硬件课程设计—流水灯(quartus软件
- 超市收银系统eclipse access大学课程设计
- 航空订票系统_数据结构课程设计
- c 课程设计 职工信息管理系统
- 汇编语言,课程设计,红绿灯
- 机床液压系统课程设计卧式钻床动力
- 多项式求和(数据结构C 版)
- 尚观培训linux董亮老师关于数据结构的
- 课程设计蔬菜大棚自动控制系统,包
评论
共有 条评论