资源简介
划分聚类K均值挖掘,本程序用MFC强力打造经典算法,程序附有要处理的数据集,程序源代码有很详细的注释,功能基本实现。
数据集为4177行记录,8维属性元组。
本程序为MFC做成,界面友好。
广大用户完全可以根据已知的数据集,对程序进行相应的修改 。

代码片段和文件信息
// SHELL.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “SHELL.h“
#include “SHELLDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSHELLApp
BEGIN_MESSAGE_MAP(CSHELLApp CWinApp)
//{{AFX_MSG_MAP(CSHELLApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSHELLApp construction
CSHELLApp::CSHELLApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CSHELLApp object
CSHELLApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CSHELLApp initialization
BOOL CSHELLApp::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
CSHELLDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 766 2009-12-23 11:24 划分聚类\icon1.ico
文件 3561 2009-12-23 11:16 划分聚类\ReadMe.txt
文件 1078 2009-12-23 11:16 划分聚类\res\SHELL.ico
文件 397 2009-12-23 11:16 划分聚类\res\SHELL.rc2
文件 913 2009-12-28 10:01 划分聚类\resource.h
文件 36204 2010-01-05 15:55 划分聚类\SHELL.APS
文件 1520 2010-01-05 15:56 划分聚类\SHELL.clw
文件 2049 2009-12-23 11:16 划分聚类\SHELL.cpp
文件 4204 2009-12-28 16:26 划分聚类\SHELL.dsp
文件 518 2009-12-23 11:16 划分聚类\SHELL.dsw
文件 1313 2009-12-23 11:16 划分聚类\SHELL.h
文件 82944 2010-01-05 15:56 划分聚类\SHELL.ncb
文件 51712 2010-01-05 15:56 划分聚类\SHELL.opt
文件 246 2010-01-05 15:56 划分聚类\SHELL.plg
文件 6825 2010-01-05 15:55 划分聚类\SHELL.rc
文件 16166 2009-12-30 22:07 划分聚类\SHELLDlg.cpp
文件 5215 2009-12-31 14:59 划分聚类\SHELLDlg.h
文件 207 2009-12-23 11:16 划分聚类\StdAfx.cpp
文件 1054 2009-12-23 11:16 划分聚类\StdAfx.h
文件 191873 2008-10-23 08:24 abalone.data
目录 0 2010-01-05 15:56 划分聚类\Release
目录 0 2009-12-31 16:44 划分聚类\res
目录 0 2010-01-05 15:56 划分聚类
----------- --------- ---------- ----- ----
408765 23
- 上一篇:马的极小满覆盖源代码C++编写
- 下一篇:c语言课程设计通讯录管理系统设计报告
相关资源
- VC++ 多线程文件读写操作
- 移木块游戏,可以自编自玩,vc6.0编写
- MFC数字钟(基于VC6.0)
- 安科瑞智能电能表MODBUS通讯程序 VC6
- VC++MFC小游戏实例教程(实例)+MFC类库
- VC6LineNumberAddin.dll
- 用VC6.0实现多边形扫描线填充算法
- VC++实现CMD命令执行与获得返回信息
- VC助手 VC6.0助手
- VC++基于OpenGL模拟的一个3维空间模型
- 基于VC++的SolidWorks二次开发SolidWorks
- VC6 USB开发源码
- VC操作SQLSERVER数据库
- aes加解密(vc源程序)
- vc_串口通讯
- 吕鑫vc6c++数据结构视频源码
- 派克变换VC++源码(附文档)
- 基于opencv漫水填充算法综合
- VC++ 串口
- VC++ 大富翁4_大富翁游戏源码
- MFC的异步网络通讯应用程序
- VC++ 摄像头视频采集与回放源程序
- 转 VC++ 实现电子邮件(Email)发送
- 基于MFC的VC++仿QQ浏览器源码(雏形)
- VC++ 服务程序编写及安装与卸载
- VC++6.0番茄西红柿VAXvirsual assist X完美破
- VC编程助手2010破解版(原名VA_X_10.6.
- 基于改进的fcm算法的图像分割vc++
- VC++6.0 绿色版,免安装,非常好用。
- Microsoft Visual C++ 2005 Redistributable Pack
评论
共有 条评论