java 井字棋 人机_一个井字棋tictactoe游戏的java实现 | Soo Smart!

这是一个井字棋游戏的java实现。摘录于stackoverflow。

游戏规则很简单,只要一方棋子在水平线,垂直线或者对角线任意一条线上排列成功即为获胜。

作者原先的代码存在着一些问题:

代码如下:

一共有几个类: play, player, human, computer, set

Play类:

import java.util.Scanner;

public class play {

public static void main(String[] args) {

System.out.println("Welcome to Tickle Tackle Toe!!! :D");

System.out.println();

//creat markers

String marker1 = "x";

String marker2 = "o";

boolean playAgain = true;

Scanner s = new Scanner(System.in);

//create player objects

Human human = new Human();

Computer computer = new Computer();

while(playAgain){

//run board setup

set Setup = new set();

Setup.createBoard();

Setup.printBoard();

System.out.println("please choose your marker");

System.out.println("type 1 for 'x' or 2 for 'o'");

//set markers

if(s.nextInt() == 1){

// create player objects

human.setMarker("x");

computer.setMarker("o");

}

else

{

human.setMarker("o");

computer.setMarker("x");

}

// determine who goes first

int first = (int) (Math.random() * 2);

boolean won = false;

int turns = 0;

if(first == 0){

System.out.println("You go first!");

System.out.println();

while(!won){

human.takeTurn(Setup.getBoard());

turns++;

Setup.printBoard();

if(Setup.hasWon(Setup.getBoard())){

won = true;

System.out.println("Congrats you won!");

}

if(turns == 9){

won = true;

System.out.println("Its a draw!");

break;

}

if(!won){

computer.takeTurn(Setup.getBoard(), human);

turns++;

System.out.println();

Setup.printBoard();

System.out.println();

if(Setup.hasWon(Setup.getBoard())){

won = true;

System.out.println("You lost!");

}

if(turns == 9){

won = true;

System.out.println("Its a draw!");

break;

}

}

} // close while 1

}

else {

System.out.println("Computer goes first!");

System.out.println();

while(!won){

computer.takeTurn(Setup.getBoard(), human);

turns++;

Setup.printBoard();

if(Setup.hasWon(Setup.getBoard())){

won = true;

System.out.println("You lost!");

}

if(!won){

human.takeTurn(Setup.getBoard());

turns++;

System.out.println();

Setup.printBoard();

System.out.println();

if(Setup.hasWon(Setup.getBoard())){

won = true;

System.out.println("Congrats you won!");

}

}

} // close while 2

}

System.out.println("Would you like to play again? Type 1 for yes or 2 to quit");

System.out.println();

if(s.nextInt() == 2){

playAgain = false;

}

}

}

}

Player类

public class player {

public String Marker;

// set marker method

public void setMarker(String marker){

Marker = marker;

}

//get marker method

public String getMarker(){

return Marker;

}

}

棋局Set类:

import java.util.Random;

import java.util.Scanner;

public class set {

// setup variables default board size and board

private int N = 3;

public String[][] board = new String [N][N];

public boolean hasWon (String [] [] board){

//horizontal

for(int i = 0; i<3; i++){

if(board[i][0].equals(board[i][1]) && board[i][1].equals(board[i][2])){

return true;

}

}

//vertical

for(int i = 0; i<3; i++){

if(board [0][i].equals(board[1][i]) && board[1][i].equals(board[2][i])){

return true;

}

}

//diagonal

if(board[0][0].equals(board[1][1]) && board[1][1].equals(board[2][2]) || board[2][0].equals(board[1][1]) && board[1][1].equals(board[0][2]))

return true;

return false;

}

int x = 1;

public void createBoard(){

for(int i = 0; i < board.length; i++){

for(int j = 0; j < board.length; j++){

board[i][j] = "" + (x);

x++;

}

}

}

public void printBoard(){

for(int i = 0; i < board.length; i++){

for(int j = 0; j < board.length; j++){

System.out.print("[" + board[i][j] + "]" + " ");

}

System.out.println();

}

}

public String[][] getBoard(){

return board;

}

}

Computer类

class Computer extends player {

public Computer(){

}

int boardsize = 3;

public void takeTurn(String[][] board, Human human) {

int vertical = 0;

int horizontal = 0;

int diagonal = 0;

boolean mademove = false;

// check if you can take a win horizontally

for(int i = 0; i<3; i++){

if(board[0][i].equals(board[1][i]) && board[0][i].equals(Marker)){

if(board[2][i] != human.getMarker()){

board[2][i] = Marker;

mademove = true;

return;

}

}

}

for(int i = 0; i<3; i++){

if(board[2][i].equals(board[1][i]) && board[2][i].equals(Marker)){

if(board[0][i] != human.getMarker()){

board[0][i] = Marker;

mademove = true;

return;

}

}

}

// check if you can take a win vertically

for(int i = 0; i<3; i++){

if(board[i][0].equals(board[i][1]) && board[i][0].equals(Marker)){

if(board[i][2] != human.getMarker()){

board[i][2] = Marker;

mademove = true;

return;

}

}

}

for(int i = 0; i<3; i++){

if(board[i][2].equals(board[i][1]) && board[i][2].equals(Marker)){

if(board[i][0] != human.getMarker()){

board[i][0] = Marker;

mademove = true;

return;

}

}

}

// check if you can take a win diagonally

if(board[0][0].equals(board[1][1]) && board[0][0].equals(Marker)){

if(board[2][2] != human.getMarker()){

board[2][2] = Marker;

mademove = true;

return;

}

}

if(board[2][2].equals(board[1][1]) && board[2][2].equals(Marker)){

if(board[0][0] != human.getMarker()){

board[0][0] = Marker;

mademove = true;

return;

}

}

if(board[0][0].equals(board[1][1]) && board[0][0].equals(Marker)){

if(board[2][2] != human.getMarker()){

board[2][2] = Marker;

mademove = true;

return;

}

}

if(board[0][2].equals(board[1][1]) && board[0][2].equals(Marker)){

if(board[2][0] != human.getMarker()){

board[2][0] = Marker;

mademove = true;

return;

}

}

if(board[2][0].equals(board[1][1]) && board[2][0].equals(Marker)){

if(board[0][2] != human.getMarker()){

board[0][2] = Marker;

mademove = true;

return;

}

}

// BLOCKS!!!! //

// check if you can block a win horizontally

for(int i = 0; i<3; i++){

if(board[0][i].equals(board[1][i]) && board[0][i].equals(human.getMarker())){

if(board[2][i] != Marker){

board[2][i] = Marker;

mademove = true;

return;

}

}

}

for(int i = 0; i<3; i++){

if(board[2][i].equals(board[1][i]) && board[0][i].equals(human.getMarker())){

if(board[0][i] != Marker){

board[0][i] = Marker;

mademove = true;

return;

}

}

}

// check if you can block a win horizontally

for(int i = 0; i<3; i++){

if(board[i][0].equals(board[i][1]) && board[i][0].equals(human.getMarker())){

if(board[i][2] != Marker){

board[i][2] = Marker;

mademove = true;

return;

}

}

}

for(int i = 0; i<3; i++){

if(board[i][2].equals(board[i][1]) && board[i][2].equals(human.getMarker())){

if(board[i][0] != Marker){

board[i][0] = Marker;

mademove = true;

return;

}

}

}

// check if you can block a win diagonally

if(board[0][0].equals(board[1][1]) && board[0][0].equals(human.getMarker())){

if(board[2][2] != Marker){

board[2][2] = Marker;

mademove = true;

return;

}

}

if(board[2][2].equals(board[1][1]) && board[2][2].equals(human.getMarker())){

if(board[0][0] != Marker){

board[0][0] = Marker;

mademove = true;

return;

}

}

if(board[0][0].equals(board[1][1]) && board[0][0].equals(human.getMarker())){

board[2][2] = Marker;

mademove = true;

return;

}

if(board[0][2].equals(board[1][1]) && board[0][2].equals(human.getMarker())){

if(board[2][0] != Marker){

board[2][0] = Marker;

mademove = true;

return;

}

}

if(board[2][0].equals(board[1][1]) && board[2][0].equals(human.getMarker())){

if(board[0][2] != Marker){

board[0][2] = Marker;

mademove = true;

return;

}

}

// make random move if above rules dont apply

for(int i = 0; i<3; i++){

if(board[i][0] != "x" && board[i][0] != "o"){

board[i][0] = Marker;

return;

}

}

for(int i = 0; i<3; i++){

if(board[i][1] != "x" && board[i][0] != "o"){

board[i][1] = Marker;

return;

}

}

for(int i = 0; i<3; i++){

if(board[i][2] != "x" && board[i][0] != "o"){

board[i][2] = Marker;

return;

}

}

}

}

Human类

import java.util.Scanner;

class Human extends player {

public Human(){

}

public void takeTurn(String[][] board) {

Scanner s = new Scanner(System.in);

boolean turn = true;

while(turn){

System.out.println("please enter row");

int row = s.nextInt();

System.out.println("please enter col");

int col = s.nextInt();

System.out.print("you entered "+row+" "+col);

System.out.println();

if(board[row - 1][col - 1] != "x" && board[row - 1][col - 1] != "o"){

board[row - 1][col - 1] = Marker;

turn = false;

} // closes if

else {

System.out.println("Already Marker here! please guess again!");

}

} // ends while

} // ends method

} // ends class

这段代码需要进一步调试。摘录此仅供参考。

原文出处:https://stackoverflow.com/questions/10645381/tictactoe-ai-java

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/567941.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++随机数(rand和srand)函数用法详解

C 提供了一组函数以生成和使用随机数字。随机数字就是从一组可能的值中进行随机选择而获得的一个值。该组中的值都有相同的被选中的几率。 随机数字常用于许多不同类型的程序中&#xff0c;以下是一些示例&#xff1a; 计算机游戏通常要使用随机数字来模拟一些随机过程&#x…

STL11-stack容器

#if 1 #include<iostream> #include<stack> using namespace std;void test01() {//初始化stack<int> s1;stack<int> s2(s1);//stack操作s1.push(10);s1.push(20);s1.push(30);s1.push(40);cout << "栈顶元素&#xff1a;" << e…

java犀牛是什么意思_深入浅出Rhino:Java与JS互操作

2011年10月6日&#xff0c;一年一度的JavaOne大会隆重举行。JavaOne2011大会的主题之一介绍针对不同Java平台的产品路线图&#xff0c;这其中包括移动版(ME&#xff0c;Micro Edition)、标准版(SE&#xff0c;Standard Edition)以及企业版(EE&#xff0c;Enterprise Edition)。…

STL12-queue容器

queue容器 队列容器 先进先出 队列只能在一端插入 一端删除 队列不能遍历 不提供迭代器 不支持随机访问 #if 1 #include<iostream> #include<queue> using namespace std; void test01() {queue<int> q; //创建队列queue<int> q2(q);q.push(10);q.pu…

java读取csv合适文件_解析-您可以推荐一个Java库来读取(并可能写入)CSV文件吗?...

Super CSV是读取/解析&#xff0c;验证和映射CSV文件到POJO的绝佳选择&#xff01;我们(Super CSV团队)刚刚发布了一个新版本(您可以从SourceForge或Maven下载它)。读取CSV文件以下示例使用read()(我们刚刚发布的新阅读器&#xff0c;使用Dozer进行具有深度映射和基于索引的映射…

Leedcode6-binary-tree-preorder-traversal

#include<iostream> #include<vector> #include<stack> using namespace std; // Definition for binary tree 先序遍历 根左右 struct TreeNode {int val;TreeNode *left;TreeNode *right;TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; #if 0 c…

java 对list增删_List 中正确的增删操作

这个为什么要单独说的原因是&#xff0c;在开发中的对数据库中的增删为最基本的&#xff0c;但是是不是写对了就尤为重要先来看代码:1 public voidtestLoopInList(){2 List a new ArrayList();3 a.add("1");4 a.add("2");5 a.add("w");6 for(St…

Leedcode7-binary-tree-postorder-traversal

#include<iostream> #include<vector> #include<stack> using namespace std; // Definition for binary tree 先序遍历 根左右 struct TreeNode {int val;TreeNode *left;TreeNode *right;TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; #if 0 c…

mysql zrm_mysql数据库备份—ZRM

ZRM是Zmanda Recovery Manager的缩写&#xff0c;这是一款备份mysql的开源软件。一、安装#yum install -y MySQL-zrm二、创建备用用户#mysql -uroot -pmysql>grant select,insert,update,create,drop,reload,shutdown,alter,super,lock table,replication client on *.* …

用tensorflow搭建RNN(LSTM)进行MNIST 手写数字辨识

用tensorflow搭建RNN(LSTM)进行MNIST 手写数字辨识 循环神经网络RNN相比传统的神经网络在处理序列化数据时更有优势&#xff0c;因为RNN能够将加入上&#xff08;下&#xff09;文信息进行考虑。一个简单的RNN如下图所示&#xff1a; 将这个循环展开得到下图&#xff1a; 上一…

java gzip rest_RestTemplate与Gzip压缩

Gzip 是一种压缩算法&#xff0c;服务器经常通过这个算法来压缩响应体&#xff0c;再响应给客户端&#xff0c;从而减少数据体积&#xff0c;提高传输速度。客户端再通过Gzip解压缩&#xff0c;获取到原始的数据。因为需要压缩计算&#xff0c;所以会耗费额外的CPU资源。Gzip 与…

RNN入门

雷锋网 AI科技评论按&#xff1a;本文作者何之源&#xff0c;原文载于知乎专栏AI Insight&#xff0c;雷锋网(公众号&#xff1a;雷锋网) AI科技评论获其授权发布。 上周写的文章《完全图解RNN、RNN变体、Seq2Seq、Attention机制》介绍了一下RNN的几种结构&#xff0c;今天就来…

Java二进制小数表示_《Java编程的逻辑》笔记9--小数的二进制表示

小数计算为什么会出错&#xff1f;简要答案实际上&#xff0c;不是运算本身会出错&#xff0c;而是计算机根本就不能精确的表示很多数&#xff0c;比如0.1这个数。计算机是用一种二进制格式存储小数的&#xff0c;这个二进制格式不能精确表示0.1&#xff0c;它只能表示一个非常…

『TensorFlow』模型保存和载入方法汇总

一、TensorFlow常规模型加载方法 保存模型 tf.train.Saver()类&#xff0c;.save(sess, ckpt文件目录)方法 参数名称功能说明默认值var_listSaver中存储变量集合全局变量集合reshape加载时是否恢复变量形状Truesharded是否将变量轮循放在所有设备上Truemax_to_keep保留最近检…

STL13-list容器(链表)

链表是由一系列的结点组成&#xff0c;结点包括两个域&#xff1a;一个数据域&#xff0c;一个指针域 1、链表内存是非连续的&#xff0c;添加删除元素效率较高&#xff0c;时间复杂度都是常数项&#xff0c;不需要移动元素 2、链表只有在需要的时候才会分配内存 3、链表只要…

java调用el_[Java教程][javaEE] EL表达式调用java方法

[Java教程][javaEE] EL表达式调用java方法0 2016-07-03 18:00:031.新建个类&#xff0c;类里面定义静态方法package com.tsh.utils;import java.net.URLEncoder;public class ELFunc { public static String urlEncode(String str){ return URLEncoder.encode(str); }}2.在WEB-…

Leedcode8-reorder-list

#include<iostream> #include<vector> using namespace std; //Definition for singly-linked list. /*Given a singly linked list L : L 0→L 1→…→L n - 1→L n, reorder it to : L 0→L n →L 1→L n - 1→L 2→L n - 2→…*/ struct ListNode {int val;List…

java设计是什么软件下载_用Java设计下载软件

用Java设计下载软件HTTP 协议的简介HTTP协议是一种超文本传输协议(Hypertext Transfer Protocol)&#xff0c;工作于网络应用层&#xff0c;自1990年起广泛应用于WWW 的全球信息服务&#xff0c;HTTP协议的具体说明可以在网上查阅RFC2518、RFC2616等文档。HTTP 协议老的标准是H…

php 前往页面,PHP实现网页截图?

如何使用PHP实现网页截图PHP实现网页截图是一个在日常开发中不常见的需求&#xff0c;但是如果实现还是非常有意思的。目前业界有很多成熟的方案&#xff0c;下面我推荐使用一个很稳定的第三方服务来直接实现&#xff0c;该服务有如下特点&#xff1a;支持多线路支持登录截图支…

Leedcode9-linked-list-cycle-i

判断链表是不是循环链表 #include<iostream> #include<vector> using namespace std; /* Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using extra space?*/ struct ListNode {int val;ListNode *next;ListNo…