• 大小: 8.83MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-09
  • 语言: 其他
  • 标签: 代码  人工智能  

资源简介

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

资源截图

代码片段和文件信息

// 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个文件信息

评论

共有 条评论