资源简介
VC++2012 Prim 最小生成树 动态演示
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “Prim.h“
#include “MyDialog.h“
#include “MainFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
const int big = 999 ;
struct edge
{
int weight;
int one;
int another;
};
int count = 0 ;
/////////////////////////////////////////////////////////////////////////////
// CMainframe
IMPLEMENT_DYNCREATE(CMainframe CframeWnd)
BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
ON_WM_CREATE()
ON_COMMAND(ID_MENUITEM32771 OnMenuitem32771)
ON_COMMAND(ID_MENUITEM32772 OnMenuitemNew)
//}}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
void CMainframe::OnMenuitem32771()
{
// TODO: Add your command handler code here
CDC * pDC = GetDC () ;
pDC ->Ellipse (83050880100) ;
pDC ->Ellipse (630240680290) ;
pDC ->Ellipse (730450780500) ;
pDC ->Ellipse (830240880290) ;
pDC ->Ellipse (10002401050290) ;
pDC ->Ellipse (930450980500) ;
//pDC ->SetTextColor (RGB (25500));
pDC ->TextOut (85570“1“) ;//255 55
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 49044 2011-01-03 02:22 Prim\Debug\MainFrm.obj
文件 10999 2011-01-02 23:29 Prim\Debug\MyDialog.obj
文件 135220 2011-01-03 02:22 Prim\Debug\Prim.exe
文件 333612 2011-01-03 02:22 Prim\Debug\Prim.ilk
文件 22496 2011-01-02 23:25 Prim\Debug\Prim.obj
文件 5499520 2011-01-01 02:21 Prim\Debug\Prim.pch
文件 508928 2011-01-03 02:22 Prim\Debug\Prim.pdb
文件 7460 2011-01-02 23:27 Prim\Debug\Prim.res
文件 14276 2011-01-01 02:21 Prim\Debug\PrimDoc.obj
文件 27779 2011-01-02 23:25 Prim\Debug\PrimView.obj
文件 105302 2011-01-01 02:21 Prim\Debug\StdAfx.obj
文件 214016 2011-01-03 02:22 Prim\Debug\vc60.idb
文件 364544 2011-01-03 02:22 Prim\Debug\vc60.pdb
文件 10278 2011-01-03 02:23 Prim\MainFrm.cpp
文件 1527 2011-01-02 23:23 Prim\MainFrm.h
文件 1156 2011-01-02 23:29 Prim\MyDialog.cpp
文件 1168 2011-01-02 23:17 Prim\MyDialog.h
文件 44196 2011-01-02 23:27 Prim\Prim.aps
文件 2656 2011-01-03 02:23 Prim\Prim.clw
文件 4173 2011-01-01 02:18 Prim\Prim.cpp
文件 4638 2011-01-02 23:18 Prim\Prim.dsp
文件 516 2011-01-01 02:18 Prim\Prim.dsw
文件 1334 2011-01-01 02:18 Prim\Prim.h
文件 66560 2011-01-03 02:23 Prim\Prim.ncb
文件 50688 2011-01-03 02:23 Prim\Prim.opt
文件 1126 2011-01-03 02:22 Prim\Prim.plg
文件 12254 2011-01-02 23:27 Prim\Prim.rc
文件 1702 2011-01-01 02:18 Prim\PrimDoc.cpp
文件 1453 2011-01-01 02:18 Prim\PrimDoc.h
文件 4536 2011-01-02 23:21 Prim\PrimView.cpp
............此处省略15个文件信息
- 上一篇:基于MFC的登陆界面
- 下一篇:谭浩强----C语言程序设计第二版高清晰PDF版
相关资源
- 数据结构 图的最小生成树 C++描述 使
- C++ Primer 3rd 英文版
- [C语言] C Primer Plus 第6版 (英文版)
- C++ Primer139296
- C++ Primer Plus英文版第六版.pdf
- 数据结构课程设计,最小生成树,采
- 免费:C++ Primer Plus 6th Edition英文版p
- C++ primer中文版
- C++Primer课后习题解答(第1~18章完整答
- c++ primer 4th answer完整版
- C++ Primer第四版中文高清非扫描版
- C++Primer中文版(第4版)
- C++Primer第四版书和代码(中文+英文双
- c++prime课后习题答案PDF版
- C++经典教材
- C++ Primer 中文完整PDF清晰非扫描(第四
- 最小生成树图形化实现
- C++ Primer 第五版 课后习题答案高清无
- C++ Primer 第三版 Answer Book 題解
- C++Primer plus(第六版)中文版书后编程
- C++ Primer 5th edition PDF完美版
- C++ primer 英文版284248
- C++ Primer第5版顶级清晰文字版
- C++ Primer Plus中文版第六版 .azw3 格式
- C++ Primer fifth edition.epub
- C++ Primer Plus中文版第六版
- c++ primer plus 高清pdf+ 源码
- c++ primer plus 中文第六版 超清电子文字
- 02_C++ Primer Plus第五版中文版高清pdf版
- C++ Primer Plus 第6版 中文版-带详细目录
评论
共有 条评论