Skip to content

A collection of custom implementations of data structures and algorithms in C for learning and experimentation.

Notifications You must be signed in to change notification settings

guidopastorino/dsa-implementations

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data Structures and Algorithms in C

This repository contains custom implementations of various data structures and algorithms in C. It is intended for learning, experimentation, and as a reference for anyone interested in understanding the inner workings of common data structures and algorithms.

Features

  • Linked List
  • Stack
  • Queue
  • Trees
  • Hash Table

Getting Started

Prerequisites

  • GCC (GNU Compiler Collection) or any C compiler

How to compile and run

  1. Clone this repository:

    git clone https://github.com/guidopastorino/dsa-implementations.git
  2. Navigate to the directory of the specific implementation:

    cd <dsa-implementation>
  3. To compile using the Makefile (recommended), simply run:

    make
    

    This will automatically compile the necessary C files.


  1. If you prefer to compile manually using GCC, use the following command (replacing filename.c with the name of the C file you wish to compile):

    gcc -o output filename.c
    
  2. Run the compiled program:

    ./program
    

About

A collection of custom implementations of data structures and algorithms in C for learning and experimentation.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages