Programming Posts

  • Conway's Game of Life

    Conway’s Game of Life is a cellular automaton devised by the British mathematician John Horton Conway in 1970. This implementation is a tribute to him, since he passed away by Covid19 in April 2020. RIP John.

    Let us denote the nodes as Coronavirus cases, with an objective of suppressing the number of Covid19 cases. After each iteration, some nodes die and some take birth. The Game of Life Automation can be found here:

  • Median Sort and Search in C

    Understanding the Median Sort:

    • Calculating the median of a given random array
    • Sorting the array by recursive median computations
    • Searching the sorted array for given element: Naive search
    • Searching by chop search
    • Benchmarks for naive search and chop search
  • Interactive Data Visualization in D3-JS

    Data Visualization in D3 JS library.

  • Linked List in C

    Understanding the Linked List: