1 Star 0 Fork 0

sqy/connect-4-artificial-intelligence

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
do_move.m 573 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ricardo Aguiar 提交于 2018-02-13 00:49 . Add files via upload
% Universidade Federal de Mato Grosso
% Instituto de Engenharia
% Inteligência Artificial - 2016/2
%
% Função Octave/MATLAB que implementa
%
% author: raonifst at gmail dot com
function [ new_Board, valid ] = do_move( Board, col, player)
new_Board = Board;
valid = 1;
if col <= 7 && col >= 1,
i = 6;
while i >= 1 && Board(i, col) ~= 0,
i = i - 1;
end
if i >= 1,
new_Board(i, col) = player;
else
valid = 0;
end
else
valid = 0;
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqyyyyy/connect-4-artificial-intelligence.git
git@gitee.com:sqyyyyy/connect-4-artificial-intelligence.git
sqyyyyy
connect-4-artificial-intelligence
connect-4-artificial-intelligence
master

搜索帮助