资源简介
基于VC++用递归的思想,按照经典的分形理论中的Koch曲线编写的算法,是很不错的分形程序设计的入门资料。
代码片段和文件信息
// Koch.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Koch.h“
#include “MainFrm.h“
#include “KochDoc.h“
#include “KochView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CKochApp
BEGIN_MESSAGE_MAP(CKochApp CWinApp)
//{{AFX_MSG_MAP(CKochApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CKochApp construction
CKochApp::CKochApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CKochApp object
CKochApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CKochApp initialization
BOOL CKochApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CKochDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CKochView));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOWMAXIMIZED);
m_pMainWnd->UpdateWindow();
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 114743 2004-08-02 21:52 Koch曲线\Debug\Koch.exe
文件 297560 2004-08-02 21:52 Koch曲线\Debug\Koch.ilk
文件 22596 2004-08-02 20:49 Koch曲线\Debug\Koch.obj
文件 5513416 2004-08-02 20:49 Koch曲线\Debug\Koch.pch
文件 443392 2004-08-02 21:52 Koch曲线\Debug\Koch.pdb
文件 5676 2004-08-02 20:49 Koch曲线\Debug\Koch.res
文件 14462 2004-08-02 20:49 Koch曲线\Debug\KochDoc.obj
文件 21794 2004-08-02 21:52 Koch曲线\Debug\KochView.obj
文件 15343 2004-08-02 20:49 Koch曲线\Debug\MainFrm.obj
文件 105544 2004-08-02 20:49 Koch曲线\Debug\StdAfx.obj
文件 197632 2004-08-02 21:59 Koch曲线\Debug\vc60.idb
文件 364544 2004-08-02 21:52 Koch曲线\Debug\vc60.pdb
文件 41308 2004-08-02 20:49 Koch曲线\Koch.aps
文件 1750 2004-08-02 22:28 Koch曲线\Koch.clw
文件 4087 2003-11-21 09:23 Koch曲线\Koch.cpp
文件 4445 2003-11-21 09:23 Koch曲线\Koch.dsp
文件 533 2003-11-21 09:23 Koch曲线\Koch.dsw
文件 1334 2003-11-21 09:23 Koch曲线\Koch.h
文件 123904 2004-08-02 22:28 Koch曲线\Koch.ncb
文件 53760 2004-08-02 22:28 Koch曲线\Koch.opt
文件 1607 2004-08-02 21:52 Koch曲线\Koch.plg
文件 9925 2004-08-02 20:49 Koch曲线\Koch.rc
文件 1702 2003-11-21 09:23 Koch曲线\KochDoc.cpp
文件 1453 2003-11-21 09:23 Koch曲线\KochDoc.h
文件 2650 2004-08-02 21:52 Koch曲线\KochView.cpp
文件 1743 2003-11-21 09:26 Koch曲线\KochView.h
文件 1635 2003-11-21 09:23 Koch曲线\MainFrm.cpp
文件 1431 2003-11-21 09:23 Koch曲线\MainFrm.h
文件 3950 2003-11-21 09:23 Koch曲线\ReadMe.txt
文件 1078 2003-11-21 09:23 Koch曲线\res\Koch.ico
............此处省略11个文件信息
相关资源
- 06.什么是递归.wmv目前数据结构最好的
- 编译原理LL1文法的mfc实现含消除左递
- MFC实现Koch曲线的绘制
- LL1文法消除左递归编译原理mfc实现完
- 用递归方法求解0/1背包问题
- 编译原理LL(0)C语言小子集源代码
- 对于任意给定的输入串词法记号流进
- 编译原理--递归下降分析程序C++
- C语言程序设计.第4版.Stephen G. Kochan.
- 运用递归下降子程序法,实现整数四
- PL0语法分析器(递归子程序法)
- 编译原理语法分析—递归下降分析法
- 编译原理大作业递归下降法
- 非递归预测分析;C++实现LL1文法分析
- 递归下降语法分析器C++实现
- Pascal文法子集的词法分析及递归下降
- 实验三-递归下降子程序分析(本代码
- 递归下降法翻译if then条件语句
- C++ 递归下降布尔表达式
- 递归下降分析法实现LL(1)文法的语
- 编译原理_递归下降分析语法分析_C语
- SNL递归下降语法分析 C++实现
- 用栈非递归方法迷宫找出路
- 分别用栈和递归来实现十进制转换为
- 二叉树非递归遍历源码
- 众数问题c实现
- 24点算法 C++实现
- 汉诺塔非递归算法 用栈 C语言
- C语言 地图染色 非递归 源代码
- 递归和非递归解决迷宫问题
评论
共有 条评论