General Discussions

Floyd’s Algorithm – C Implementation

All pair shortest path algorithm (Floyd) , C implementation is below. Also available in Github here.

Ebooks

Structures and C – Ebook

Understanding ‘structures’ has given stunning buildings and architectural wonders. Understanding ‘structures’ has explained us how to visualize the universe and the planetary system. Understanding ‘structures’ has given out patterns and designs. Structures have made the study easy and involving. Understanding ‘structures’ will also make you a better programmer. Though we are referring to different structures… Continue reading Structures and C – Ebook

General Discussions

Inventory DS

Inventory data structure is a makeover of a matrix data structure. Often we encounter tasks where we have keywords and their associated properties. Consider like we have 5 items and each item has associated 10 properties, we want to put them in a table and then perform some operations on it.  A matrix is too… Continue reading Inventory DS

C Codes

Missing Array Intermediates – C code

Problem: Printing the missing array intermediates As a input, collect a sorted array of integer elements from the user. The task is to print the intermediate missing elements. Example: If the user enters the array elements as: {1, 4, 7, 9, 10, 11, 12, 15} Then, output has to be: 2, 3, 5, 6, 8,… Continue reading Missing Array Intermediates – C code

General Discussions

Knit Engine [Ver. 0.3]

After the second version release of my research work which was named as Knit Engine [Ver. 0.2], I decided to keep up with monthly release to track and monitor the progress of the work. There will be small releases, however nothing made public as of yet. This release Version 0.3, saw the following changes: GUI… Continue reading Knit Engine [Ver. 0.3]