forked from yanshengjia/artificial-intelligence
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a01486
commit 61e5c8a
Showing
4 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
#24数码问题 | ||
# 24数码问题 | ||
|
||
人工智能课第三次作业 | ||
|
||
###问题描述 | ||
### 问题描述 | ||
|
||
求解24数码问题 | ||
|
||
###方法 | ||
### 方法 | ||
|
||
启发式搜索 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
#基于遗传算法的优化问题求解 | ||
# 基于遗传算法的优化问题求解 | ||
|
||
人工智能课第二次作业 | ||
|
||
###问题 | ||
### 问题 | ||
|
||
求解函数 f(x)=x+10sin(5x)+7cos(4x) 在区间[0,9]的极大值 | ||
|
||
###方法 | ||
### 方法 | ||
|
||
遗传算法 | ||
|
||
###答案 | ||
### 答案 | ||
|
||
24.8553627239529 | ||
x = 7.857 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
#百万皇后问题 | ||
# 百万皇后问题 | ||
|
||
人工智能课第四次作业 | ||
|
||
###问题描述 | ||
### 问题描述 | ||
|
||
求解百万皇后问题 | ||
|
||
###方法 | ||
### 方法 | ||
|
||
采用QS4算法,求解3000000皇后一般能在3秒之内得到一个可行解,若未搜索到随机重启。 | ||
|
||
算法来自 Sosic, R.; Gu, J. 3,000,000 Queens in less than one minute. ACM SIGART Bulletin, 1991, 2(2). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#README | ||
# README | ||
|
||
这是人工智能研讨课第一次作业的代码和源码。 | ||
|
||
基于人工神经网络和反向传播算法来识别人脸的特征。 | ||
|