Coder Social home page Coder Social logo

dync's Introduction

Dynamic Collections

Implementations of data structures in C

This is my personal take on (some) data structures that I did to solidify my knowledge on C and basic computer science principles. I may come back to this eventually when I get burnt out from other languages. I also intend on making it -pendantic compliant (as of now, it performs pointer arithmetic on void pointers).

The data structures implemented here include:

  • The var type. It's a struct that encapsulates data of any type.
  • The Dynarr type. It's a struct that works as a header for a dynamic array (an array that expands or shrinks according to the program's needs).
  • The Dynlst type. It's a struct that works as a header for a double-linked list.

The Samples*.c files demonstrate a few of the functionalities of the library.

Made on Windows 10, with GCC 9.2.0. Written on CodeBlocks. Documentation was supplied by Doxygen.

How to compile

  • Compile the library (flags are optional):
gcc -Wall -g -Winline -Wunreachable-code -Wmain -pedantic  -c dynarr.c -o dynarr.o
gcc -Wall -g -Winline -Wunreachable-code -Wmain -pedantic  -c dynlst.c -o dynlst.o
gcc -Wall -g -Winline -Wunreachable-code -Wmain -pedantic  -c dynvar.c -o dynvar.o
  • Compile your program (flags are optional):
gcc -Wall -g -Winline -Wunreachable-code -Wmain -pedantic  -c main.c -o main.o
  • Link everything together:
gcc -o main.exe dynarr.o dynlst.o dynvar.o main.o   

dync's People

Contributors

kaoticz avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.