Skip to content

praisetompane-experiments/algorithms_and_data_structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

algorithms_and_data_structures

build status

Objectives

  • A toy implementation of foundational data structures and algorithms at a lower level of the stack.

Project Structure

  • docs: Project documentation lives in here.
  • src: Each data structure is an independent module.

Dependencies

Setup Instructions

Installation

Clone Repository

git clone git@github.com:praisetompane/algorithms_and_data_structures.git

Build

make build

Test

make test

Install

sudo make install

Uninstall

sudo make uninstall

Usage

#include "array.h"
#include <stdio.h>

int main()
{
    printf("Test creating, adding and reading from Integer Array\n");
    Array numbers = array(INT, 10);

    int number = 2;
    add(&numbers, 0, &number);

    int read_int;
    read(&numbers, 0, &read_int);
    printf("\n");
}

Git Conventions

About

A toy implementation of foundational data structures and algorithms at a lower level of the stack.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors