GithubHelp home page GithubHelp logo

josuerv99 / maze-solver_using_threads_and_forks Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kevinfallas03/laberinto_threads-forks

0.0 1.0 0.0 878 KB

A maze solver that reads a maze from a text file, using a walker that finds the target using threads and forks to look in other directions (called process mirroring) with C on Linux.

Makefile 0.73% C 99.27%
c linux threads forks comparison maze-solver

maze-solver_using_threads_and_forks's Introduction

maze-solver_using_threads_and_forks

A maze solver that reads a maze from a text file, using a walker that finds the target using threads and forks to look in other directions (called process mirroring) with C on Linux. As part of the course of 'Operating systems introduction', TEC (Costa Rica 2021)

project structure

.
├── Documentación
│   ├── Documentación-Proyecto1-Laberintos.pdf
│   └── Especificaciones-Laberinto.pdf
├── maze-threads-forks
│   ├── files
│   │   ├── maps
│   │   │   ├── lab1.txt
│   │   │   ├── lab2.txt
│   │   │   ├── lab3.txt
│   │   │   ├── prueba1.txt
│   │   │   ├── prueba2.txt
│   │   │   ├── prueba3.txt
│   │   │   └── prueba4.txt
│   │   └── solutions
│   │       ├── 1_map.txt
│   │       ├── 1_stats.txt
│   │       ├── 2_map.txt
│   │       ├── 2_stats.txt
│   │       └── count.txt
│   └── src
│       ├── loader
│       │   ├── loader.c
│       │   └── loader.h
│       ├── main.c
│       ├── Makefile
│       ├── memo
│       │   ├── memo.c
│       │   └── memo.h
│       ├── program
│       ├── solver
│       │   ├── solver.c
│       │   └── solver.h
│       ├── timer
│       │   ├── timer.c
│       │   └── timer.h
│       └── utils
│           ├── file_handler.c
│           ├── file_handler.h
│           ├── maze_utils.c
│           ├── maze_utils.h
│           ├── walker_utils.c
│           └── walker_utils.h
└── README.md

execution

You need to compile the program using a C compiler thats works on linux (gcc) and have already installed make (to work with Makefile's)

cd maze-threads-forks/src
make

to create an executable program and that's it

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.