资源简介
人工智能是一个庞杂的学科体系,从概念上讲,一切为复制生物智能而做出的努力都可纳入其中。如何能够系统、全面、简洁地描述人工智能的全貌而不显得凌乱,绝非易事。编者在为本科生讲授“人工智能基础”课程时,就感到涵盖自己所欲讲授全部内容的教材或书籍尚不多见,需要查阅许多不同资料才能获取相关信息,于是萌生撰写此书的念头,并一路坚持下来,直至此书面世。人工智能导论配套实验代码。

代码片段和文件信息
// 1123.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “1123.h“
#include “MainFrm.h“
#include “1123Doc.h“
#include “1123View.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMy1123App
BEGIN_MESSAGE_MAP(CMy1123App CWinApp)
//{{AFX_MSG_MAP(CMy1123App)
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)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMy1123App construction
CMy1123App::CMy1123App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMy1123App object
CMy1123App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMy1123App initialization
BOOL CMy1123App::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(CMy1123Doc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CMy1123View));
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_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
/
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-05-09 22:21 18-5-10臧泽林整理版\
目录 0 2018-05-08 22:11 18-5-10臧泽林整理版\1产生式系统实验x\
文件 67072 2011-02-17 13:17 18-5-10臧泽林整理版\1产生式系统实验x\1产生式系统实验要求.doc
目录 0 2018-04-27 15:08 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\
目录 0 2018-04-27 15:08 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\
文件 31064 2011-04-06 17:39 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.aps
文件 3771 2011-04-06 17:39 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.clw
文件 4201 2009-05-03 16:06 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.cpp
文件 4758 2009-05-06 13:03 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.dsp
文件 533 2009-05-03 16:06 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.dsw
文件 1344 2009-05-03 16:06 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.h
文件 214016 2011-04-06 17:39 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.ncb
文件 50688 2011-04-06 17:39 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.opt
文件 242 2011-03-24 13:18 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.plg
文件 13772 2009-05-06 15:48 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123.rc
文件 1736 2009-05-03 16:06 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123Doc.cpp
文件 1467 2009-05-03 16:06 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123Doc.h
文件 5747 2009-05-06 12:32 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123View.cpp
文件 2083 2009-05-05 22:39 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\1123View.h
目录 0 2018-04-27 15:08 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\
文件 131132 2009-05-06 15:48 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\1123.exe
文件 350616 2009-05-06 15:48 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\1123.ilk
文件 22790 2009-05-03 16:32 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\1123.obj
文件 5493172 2009-05-03 16:32 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\1123.pch
文件 508928 2009-05-06 15:48 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\1123.pdb
文件 8200 2009-05-06 15:48 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\1123.res
文件 14581 2009-05-03 16:32 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\1123Doc.obj
文件 39750 2009-05-06 12:32 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\1123View.obj
文件 16293 2009-05-04 14:46 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\input.obj
文件 24344 2009-05-06 13:01 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\MainFrm.obj
文件 26989 2009-05-06 13:02 18-5-10臧泽林整理版\1产生式系统实验x\c++动物识别系统\人工智能\Debug\shujuku.obj
............此处省略158个文件信息
相关资源
- bp神经网络源代码,可直接运行
- 随机森林R语言代码
- 计算机图形学 边填充算法实现代码
- 直流无刷电机方波驱动 stm32 例程代码
- 仿知乎界面小程序源代码
- 贪吃蛇源代码.fla
- 周立功开发板ProASIC3实验-syn_FIFO代码
- IMX385驱动代码.zip
- dotnet 写字板 实验 源代码 不好请要不
- 图像二维小波变换的实现源代码
- 八三编码器设计 VHDL代码 简单,包附
- linux应用层的华容道游戏源代码
- 交通咨询模拟系统完整代码
- http请求状态代码
- 数值分析所有实验代码
- 网上拍卖系统完整源代码
- 音乐代码转换软件 单片机编程时用
- CSMA/CD等动画演示加源代码
- silicon lab公司的收音IC SI47XX全套开发工
- 用51单片机实现G代码翻译
- 合同管理系统的源代码(附数据库)
- 用VC 编写的仿QQ聊天室程序源代码
- web班级网站设计代码
- 38k单片机红外发送代码、keil
- STM32F103 串口程序(完整版)
- 网络唤醒代码
- VPC3_DPV1源代码,Profibus
- PB做的托盘程序(最小化后在左下角显
- RSA算法源码
- ubuntu9.10 可加载内核模块和字符设备驱
评论
共有 条评论