• Stars
    star
    6
  • Rank 2,531,121 (Top 51 %)
  • Language
    C#
  • Created over 12 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The 8-Puzzle Problem is a thing they throw at you when you study Artificial Intelligence. It’s a great little problem for learning to understand search trees and shortest path algorithms with heuristics. Traveling via Breadth-First Search, via Depth First Search we mostly end up with the A* Algorithm using a Manhattan Distance Heuristic for effectively solving this problem. This article shows a way how to do this in C#.

More Repositories

1

NoteBooks-Statistics-and-MachineLearning

Jupyter Notebooks from the old UnsupervisedLearning.com (RIP) machine learning and statistics blog
Jupyter Notebook
317
star
2

RepositoryPatternEntityFramework

The Repository pattern adds a separation layer between the data and domain layers of an application. It also makes the data access parts of an application better testable.
C#
59
star
3

RepositoryPatternLinqToSql

The Repository pattern adds a separation layer between the data and domain layers of an application. It also makes the data access parts of an application better testable.
C#
28
star
4

Udacity-DS101-IntroToDataScience

Sketches for the Udacity course DS101 Intro to Data Science. https://www.udacity.com/course/ud359
Python
16
star
5

FactoryPattern

A Simple Factory Pattern example in c#
C#
13
star
6

CommandPatternConsole

Command Pattern Console Example
C#
6
star
7

ChainOfResponsibilityPattern

The Chain of Responsibility pattern takes a request and flows through a chain of handlers. Each handler checks if it can handle the request according to some business rules. If the handler can’t handle the request it gets passed to the next handler in the chain. The client doesn’t know which handler eventually handles the request.
C#
3
star
8

verkeerslichten

1
star
9

restwebsocketstarter

Multimodule Maven project with REST, Jetty, Jersey, and Javax Websockets client/server implementations.
Java
1
star
10

IocContainer

C#
1
star
11

SortAlgoBot

SortAlgoBot performs a classic Quicksort sorting algorithm on an array of twelve colored Lego balls. It detects all colors in the first round. Then the sorting starts and all 'swaps' the algorithm makes are executed. Programmed in C# with VisualStudio 2010 and the excellent Mindsqualls Lego Mindstroms Nxt library. It fires of commands to Motorcontrol, a great third party application for better controlling motor movements on the Nxt brick.
C#
1
star