资源简介
人工智能是一个庞杂的学科体系,从概念上讲,一切为复制生物智能而做出的努力都可纳入其中。如何能够系统、全面、简洁地描述人工智能的全貌而不显得凌乱,绝非易事。编者在为本科生讲授“人工智能基础”课程时,就感到涵盖自己所欲讲授全部内容的教材或书籍尚不多见,需要查阅许多不同资料才能获取相关信息,于是萌生撰写此书的念头,并一路坚持下来,直至此书面世。人工智能导论配套实验代码。
代码片段和文件信息
// 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个文件信息
相关资源
- 圆点摄像头激光测距源代码---本人亲
- 《GPS应用程序设计》GPS程序源代码
- 人工智能在计算机网络中的应用.pdf
- HM代码解释文档
- 客户关系管理系统的源代码
- opengl迷宫及源代码,实现贴图、3d效果
- x86-x64体系探索及编程-随书代码.rar
- GBT4208-2017外壳防护等级IP代码.pdf
- WinCE开发详解,包含了源代码哦
- 马尔科夫随机场图像分割ICM代码
- stm32移植uCOSii,内含移植步骤和代码
- 手机备忘录源代码
- 调度系统的源代码
- VC图像处理代码之—数字图像工程案例
- 人工智能哈工大-赵铁军-2009 ppt
- adina_adinat使用手册:自动动态增量非
- VideoEye 0.2 源代码
-
MPla
yer 源代码 - GBVS视觉显著性代码
- 教室预约代码
- 仿知乎客户端,代码
- H5移动电商模板代码
- aceEditor代码编辑器api
- 飞机大战 cocos creatro 完整资源+ 代码
- 连连看 cocos2dx 源代码
- 《C实用编程百例》源代码.rar
- STM32F103C8T6+FreeRTOS+Keil5 代码亲测完美
- 基于RS编码的视频源代码
- 使用Qt动画框架设计角色的二维动画二
- 使用Qt动画框架设计角色的二维动画演
评论
共有 条评论