Giter Club home page Giter Club logo

knightmoves's Introduction

Chess Knight's Minimum Moves REST API

For chessboard of M x N size, given the position of knight and position of target. Need to find, out minimum steps a Knight, will take to reach the target position.

This problem can be seen as shortest path in unweighted graph. For solution this problem uses Breadth-first search (BFS) algorithm. We try all 8 possible positions of a Knight, and if reachable position is not already visited and is inside the board, we push this position into queue with distance 1 more than its parent position. We implements BFS for searching through nodes, where each node contains its coordinate and distance from starting node. In worst case, algorithm visits all nodes of board, making worst-case time complexity as O(N^2).

Dependencies

  • Oracle JDK 1.8
  • Maven 3.6.1
  • Spring Boot 2.1.6
  • JAX-RS 2.1
  • Tomcat 9.0.21
  • JUnit 4.12

Installation

$ git clone https://github.com/backuot/knightmoves.git
$ cd knightmoves
$ mvn install

Run

For run server:

$ mvn spring-boot:run

For run tests:

$ mvn test

Usage

JAX-RS endpoint:

$ curl -i "http://localhost:8080/knight/servlet/count?width=8&height=8&start=A1&end=E8"

Spring Boot endpoint:

$ curl -i "http://localhost:8080/knight/rest/count?width=8&height=8&start=A1&end=E8"

Versions

  • 0.0.1

Authors

  • Dmitry Nazarov

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

knightmoves's People

Contributors

backuot avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.