Skip to content
C

C

Projects with this topic

  • Answer to xv6 lesson on M1. Is it the Pierre David lesson, the exercices is in the file exv6.pdf. Each branch is a answer.

    Updated
    Updated
  • Sokoban (倉庫番, Sōko-ban) est un jeu vidéo de réflexion dans lequel le joueur pousse des boîtes dans un entrepôt, en essayant de les amener à des emplacements de stockage. Le jeu a été conçu en 1981 par Hiroyuki Imabayashi, et publié pour la première fois en décembre 1982.

    Updated
    Updated
  • Sokoban game

    Topics: TP C
    Updated
    Updated
  • Updated
  • Jeu de la vie.

    Projet techniques de développement L2 S3.

    Updated
    Updated
  • Updated
  • Topics: C
    Updated
    Updated
  • The Game of Life, also known as Conway's Game of Life, is a cellular automaton devised by mathematician John Horton Conway in 1970. It is a simulation of a simplified model of life in which cells evolve based on a set of predefined rules.

    The Game of Life takes place on a grid of cells, which can be in one of two states: alive or dead. The game progresses in generations, with the state of each cell in a generation determined by the states of its neighboring cells. The rules for cell evolution are as follows:

    Any live cell with fewer than two live neighbors dies, as if by underpopulation. Any live cell with two or three live neighbors lives on to the next generation. Any live cell with more than three live neighbors dies, as if by overpopulation. Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.

    These rules govern the birth, death, and survival of cells, leading to patterns and behaviors that can be visually interesting and complex. The initial state of the grid is set by the user, and then the game progresses by repeatedly applying the rules to generate subsequent generations.

    The Game of Life is not considered a conventional game with winning or losing conditions. Instead, it serves as an example of a cellular automaton and a field of study within mathematics and computer science. It has been of interest to researchers due to its ability to produce emergent patterns and behaviors from simple rules, often mirroring the patterns observed in natural systems.

    Updated
    Updated
  • Implémentation en langage C du célèbre Jeu de la vie de John Conway

    Updated
    Updated