mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-13 21:42:29 +00:00
Make code more modular in nature #17
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @shivam-tripathi on GitHub (Oct 16, 2017).
Presently, each algorithm implementation requires implementation of each underlying data structure from scratch. This is a hassle, as more than often the implementations of underlying data structures increases the code size unnecessarily.
For example, while implementing graph algorithms if we have to reimplement graph ADT again it will meaningless. Instead it would be good idea to implement a header file alongside, which could be used as includes later in other algorithms.
This issue aims to provide such modular nature in the present existing files.
@kenshimota commented on GitHub (Dec 19, 2017):
valla no sabia eso gracias por el dato brou
@kenshimota commented on GitHub (Dec 19, 2017):
:) :) :D
@christianbender commented on GitHub (Dec 23, 2017):
@shivam-tripathi
Thanks for your suggestions. We can split the data structures into header (interface section) and c-file (implementation section). But that take time. You can contribute.